Commit 87de0e7a authored by topjohnwu's avatar topjohnwu

Force remove AVB for 2SI since it may bootloop some devices

parent 85755e30
...@@ -68,7 +68,8 @@ LOCAL_SRC_FILES := \ ...@@ -68,7 +68,8 @@ LOCAL_SRC_FILES := \
magiskpolicy/rules.cpp \ magiskpolicy/rules.cpp \
magiskpolicy/policydb.cpp \ magiskpolicy/policydb.cpp \
magiskpolicy/statement.cpp \ magiskpolicy/statement.cpp \
magiskpolicy/sepolicy.c magiskpolicy/sepolicy.c \
magiskboot/pattern.cpp
LOCAL_LDFLAGS := -static LOCAL_LDFLAGS := -static
include $(BUILD_EXECUTABLE) include $(BUILD_EXECUTABLE)
......
...@@ -18,6 +18,8 @@ entry.val = &line[val##0]; ...@@ -18,6 +18,8 @@ entry.val = &line[val##0];
#define FSR "/first_stage_ramdisk" #define FSR "/first_stage_ramdisk"
extern uint32_t patch_verity(void *buf, uint32_t size);
void FirstStageInit::prepare() { void FirstStageInit::prepare() {
if (cmd->force_normal_boot) { if (cmd->force_normal_boot) {
xmkdirs(FSR "/system/bin", 0755); xmkdirs(FSR "/system/bin", 0755);
...@@ -124,6 +126,11 @@ void FirstStageInit::prepare() { ...@@ -124,6 +126,11 @@ void FirstStageInit::prepare() {
// Redirect system mnt_point so init won't switch root in first stage init // Redirect system mnt_point so init won't switch root in first stage init
if (entry.mnt_point == "/system") if (entry.mnt_point == "/system")
entry.mnt_point = "/system_root"; entry.mnt_point = "/system_root";
// Force remove AVB for 2SI since it may bootloop some devices
auto len = patch_verity(entry.fsmgr_flags.data(), entry.fsmgr_flags.length());
entry.fsmgr_flags.resize(len);
entry.to_file(fp.get()); entry.to_file(fp.get());
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment