scripts: ensure system is able to be mounted rw before attempting

- this is needed for installations on Lineage 17.1 Recovery (AOSP Q) for logical partition devices, which uses /dev/block/mapper to stage the partitions

Thanks LuK1337 & erfanoabdi @ Lineage
This commit is contained in:
osm0sis
2020-04-20 01:20:19 -03:00
committed by John Wu
parent 15f155100c
commit 0f910f2d40
2 changed files with 2 additions and 0 deletions

View File

@ -78,6 +78,7 @@ chmod -R 755 $MAGISKBIN
# addon.d
if [ -d /system/addon.d ]; then
ui_print "- Adding addon.d survival script"
blockdev --setrw /dev/block/mapper/system$SLOT 2>/dev/null
mount -o rw,remount /system
ADDOND=/system/addon.d/99-magisk.sh
cp -af $COMMONDIR/addon.d.sh $ADDOND