a73e7e9f99
Rewrite the whole module mounting logic from scratch. Even the algorithm is different compared to the old one. This new design focuses on a few key points: - Modular: Custom nodes can be injected into the mount tree. It's the main reason for starting the rewrite (needed for Android 11) - Efficient: Compared to the existing implementation, this is the most efficient (both in terms of computation and memory usage) design I currently can come up with. - Accurate: The old mounting logic relies on handling specifically every edge case I can think of. During this rewrite I actually found some cases that the old design does not handle properly. This new design is architected in a way (node types and its rankings) that it should handle edge cases all by itself when constructing mount trees.
165 lines
3.1 KiB
Makefile
165 lines
3.1 KiB
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
########################
|
|
# Binaries
|
|
########################
|
|
|
|
ifdef B_MAGISK
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := magisk
|
|
LOCAL_STATIC_LIBRARIES := libnanopb libsystemproperties libutils
|
|
LOCAL_C_INCLUDES := jni/include
|
|
|
|
LOCAL_SRC_FILES := \
|
|
core/applets.cpp \
|
|
core/magisk.cpp \
|
|
core/daemon.cpp \
|
|
core/bootstages.cpp \
|
|
core/socket.cpp \
|
|
core/db.cpp \
|
|
core/scripting.cpp \
|
|
core/restorecon.cpp \
|
|
core/module.cpp \
|
|
magiskhide/magiskhide.cpp \
|
|
magiskhide/proc_monitor.cpp \
|
|
magiskhide/hide_utils.cpp \
|
|
magiskhide/hide_policy.cpp \
|
|
resetprop/persist_properties.cpp \
|
|
resetprop/resetprop.cpp \
|
|
su/su.cpp \
|
|
su/connect.cpp \
|
|
su/pts.cpp \
|
|
su/su_daemon.cpp
|
|
|
|
LOCAL_LDLIBS := -llog
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
ifdef B_INIT
|
|
LOCAL_MODULE := magiskinit
|
|
BB_INIT := 1
|
|
else ifdef B_INIT64
|
|
LOCAL_MODULE := magiskinit64
|
|
LOCAL_CPPFLAGS += -DUSE_64BIT
|
|
BB_INIT := 1
|
|
endif
|
|
|
|
ifdef BB_INIT
|
|
|
|
LOCAL_STATIC_LIBRARIES := libsepol libxz libutils
|
|
LOCAL_C_INCLUDES := \
|
|
jni/include \
|
|
out \
|
|
out/$(TARGET_ARCH_ABI)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
init/init.cpp \
|
|
init/mount.cpp \
|
|
init/rootdir.cpp \
|
|
init/getinfo.cpp \
|
|
init/twostage.cpp \
|
|
core/socket.cpp \
|
|
magiskpolicy/api.cpp \
|
|
magiskpolicy/magiskpolicy.cpp \
|
|
magiskpolicy/rules.cpp \
|
|
magiskpolicy/policydb.cpp \
|
|
magiskpolicy/statement.cpp \
|
|
magiskpolicy/sepolicy.c
|
|
|
|
LOCAL_LDFLAGS := -static
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif
|
|
|
|
ifdef B_BOOT
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := magiskboot
|
|
LOCAL_STATIC_LIBRARIES := libmincrypt liblzma liblz4 libbz2 libfdt libutils
|
|
LOCAL_C_INCLUDES := jni/include
|
|
|
|
LOCAL_SRC_FILES := \
|
|
magiskboot/main.cpp \
|
|
magiskboot/bootimg.cpp \
|
|
magiskboot/hexpatch.cpp \
|
|
magiskboot/compress.cpp \
|
|
magiskboot/format.cpp \
|
|
magiskboot/dtb.cpp \
|
|
magiskboot/ramdisk.cpp \
|
|
magiskboot/pattern.cpp
|
|
|
|
LOCAL_LDLIBS := -lz
|
|
LOCAL_LDFLAGS := -static
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif
|
|
|
|
ifdef B_POLICY
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := magiskpolicy
|
|
LOCAL_STATIC_LIBRARIES := libsepol libutils
|
|
LOCAL_C_INCLUDES := jni/include
|
|
|
|
LOCAL_SRC_FILES := \
|
|
core/applet_stub.cpp \
|
|
magiskpolicy/api.cpp \
|
|
magiskpolicy/magiskpolicy.cpp \
|
|
magiskpolicy/rules.cpp \
|
|
magiskpolicy/policydb.cpp \
|
|
magiskpolicy/statement.cpp \
|
|
magiskpolicy/sepolicy.c
|
|
|
|
LOCAL_CFLAGS := -DAPPLET_STUB_MAIN=magiskpolicy_main
|
|
LOCAL_LDFLAGS := -static
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif
|
|
|
|
ifdef B_PROP
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := resetprop
|
|
LOCAL_STATIC_LIBRARIES := libnanopb libsystemproperties libutils
|
|
LOCAL_C_INCLUDES := jni/include
|
|
|
|
LOCAL_SRC_FILES := \
|
|
core/applet_stub.cpp \
|
|
resetprop/persist_properties.cpp \
|
|
resetprop/resetprop.cpp \
|
|
|
|
LOCAL_CFLAGS := -DAPPLET_STUB_MAIN=resetprop_main
|
|
LOCAL_LDFLAGS := -static
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif
|
|
|
|
ifdef B_TEST
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := test
|
|
LOCAL_STATIC_LIBRARIES := libutils
|
|
LOCAL_C_INCLUDES := jni/include
|
|
LOCAL_SRC_FILES := test.cpp
|
|
LOCAL_LDFLAGS := -static
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif
|
|
|
|
ifdef B_BB
|
|
|
|
include jni/external/busybox/Android.mk
|
|
|
|
endif
|
|
|
|
########################
|
|
# Libraries
|
|
########################
|
|
include jni/utils/Android.mk
|
|
include jni/systemproperties/Android.mk
|
|
include jni/external/Android.mk
|