mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-04-16 20:51:25 +00:00
13 lines
423 B
Bash
13 lines
423 B
Bash
mount_partitions() {
|
|
[ "`getprop ro.build.ab_update`" = "true" ] && SLOT=`getprop ro.boot.slot_suffix`
|
|
[ "`getprop ro.build.system_root_image`" = "true" ] && SYSTEM_ROOT=true || SYSTEM_ROOT=false
|
|
}
|
|
|
|
get_flags() {
|
|
$SYSTEM_ROOT && KEEPVERITY=true || KEEPVERITY=false
|
|
[ "`getprop ro.crypto.state`" = "encrypted" ] && KEEPFORCEENCRYPT=true || KEEPFORCEENCRYPT=false
|
|
RECOVERYMODE=false
|
|
}
|
|
|
|
run_migrations() { return; }
|