c798c9cd24
In order to maintain compatibility with older trees, we now have minadbd.old and minui.old. I had to use a TARGET_GLOBAL_CFLAG to handle ifdef issues in minui/minui.d because healthd includes minui/minui.h and there was no other alternative to make minui.h compatible with older trees without having to modify healthd rules which is outside of TWRP. Note that the new minui does not currently have support for qcom overlay graphics. Support for this graphics mode will likely be added in a later patch set. If you are building in a 6.0 tree and have a device that needs qcom overlay graphics, be warned, as off mode charging may not work properly. A dead battery in this case could potentially brick your device if it is unable to charge as healthd handles charging duties. Update rules for building toolbox and add rules for making toybox Use permissive.sh in init.rc which will follow symlinks so we do not have to worry about what binary is supplying the setenforce functionality (toolbox, toybox, or busybox). Fix a few warnings in the main recovery binary source code. Fix a few includes that were missing that prevented compiling in 6.0 Change-Id: Ia67aa2107d260883da5e365475a19bea538e8b97
27 lines
827 B
C
27 lines
827 B
C
/* the list of mutexes used by adb */
|
|
/* #ifndef __MUTEX_LIST_H
|
|
* Do not use an include-guard. This file is included once to declare the locks
|
|
* and once in win32 to actually do the runtime initialization.
|
|
*/
|
|
#ifndef ADB_MUTEX
|
|
#error ADB_MUTEX not defined when including this file
|
|
#endif
|
|
ADB_MUTEX(dns_lock)
|
|
ADB_MUTEX(socket_list_lock)
|
|
ADB_MUTEX(transport_lock)
|
|
#if ADB_HOST
|
|
ADB_MUTEX(local_transports_lock)
|
|
#endif
|
|
ADB_MUTEX(usb_lock)
|
|
|
|
// Sadly logging to /data/adb/adb-... is not thread safe.
|
|
// After modifying adb.h::D() to count invocations:
|
|
// DEBUG(jpa):0:Handling main()
|
|
// DEBUG(jpa):1:[ usb_init - starting thread ]
|
|
// (Oopsies, no :2:, and matching message is also gone.)
|
|
// DEBUG(jpa):3:[ usb_thread - opening device ]
|
|
// DEBUG(jpa):4:jdwp control socket started (10)
|
|
ADB_MUTEX(D_lock)
|
|
|
|
#undef ADB_MUTEX
|