try harder to make system rw

This commit is contained in:
Pierre-Hugues Husson 2022-05-13 17:00:59 -04:00
parent 71f0000b6a
commit d815e2bd67
1 changed files with 1 additions and 1 deletions

View File

@ -314,11 +314,11 @@ fi
if mount -o remount,rw /system; then
resize2fs "$(grep ' /system ' /proc/mounts | cut -d ' ' -f 1)" || true
else
remount system
mount -o remount,rw /
major="$(stat -c '%D' /.|sed -E 's/^([0-9a-f]+)([0-9a-f]{2})$/\1/g')"
minor="$(stat -c '%D' /.|sed -E 's/^([0-9a-f]+)([0-9a-f]{2})$/\2/g')"
mknod /dev/tmp-phh b $((0x$major)) $((0x$minor))
blockdev --setrw /dev/tmp-phh
resize2fs /dev/root || true
resize2fs /dev/tmp-phh || true
fi