Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d73be1b9 authored by Steven Moreland's avatar Steven Moreland
Browse files

libcutils: compile with BOARD_VNDK_VERSION current

- moved __android_log_is_debuggable to a new public header
    (log_properties.h)
- vendor version of sched_policy uses ALOG* instead SLOG*

Test: (sanity) liblog-unit-tests
Test: (sanity) libcutils_test (noting b/b/32972117, two tests continue
  to fail)
Test: system/core as a whole makes with BOARD_VNDK_VERSION := current
  now with no problems.
Test: boots/works on internal marlin
Bug: 33241851

(cherry picked from commit 1f83aa42)

Merged-In: I5bc1f348dc0f0c8814bec5b5c3d2c52c825ab640
Change-Id: I5bc1f348dc0f0c8814bec5b5c3d2c52c825ab640
parent ffa38cfc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -32,10 +32,10 @@
#include <android-base/properties.h>
#include <android-base/stringprintf.h>
#include <libminijail.h>
#include <log/log_properties.h>
#include <scoped_minijail.h>

#include <private/android_filesystem_config.h>
#include <private/android_logger.h>
#include "debuggerd/handler.h"
#include "selinux/android.h"

+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@
#include <android-base/properties.h>
#include <bootloader_message/bootloader_message.h>
#include <cutils/android_reboot.h>
#include <private/android_logger.h>
#include <log/log_properties.h>
#endif

#include "adb.h"
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@

#include "android-base/properties.h"
#include "android-base/stringprintf.h"
#include <private/android_logger.h>
#include <log/log_properties.h>

#include "adb.h"
#include "adb_io.h"
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@

#if !ADB_HOST
#include <android-base/properties.h>
#include <private/android_logger.h>
#include <log/log_properties.h>
#endif

#include "adb.h"
+1 −1
Original line number Diff line number Diff line
@@ -48,8 +48,8 @@
#include <linux/fs.h>
#include <linux/loop.h>
#include <linux/magic.h>
#include <log/log_properties.h>
#include <logwrap/logwrap.h>
#include <private/android_logger.h>  // for __android_log_is_debuggable()

#include "fs_mgr.h"
#include "fs_mgr_avb.h"
Loading