SaR is more annoying to resize because there is no such thing as /dev/root, but mknod it so we can do it

This commit is contained in:
Pierre-Hugues Husson 2019-08-21 22:40:36 +02:00
parent d6d8b0ee5c
commit fda319aa57
1 changed files with 4 additions and 0 deletions

View File

@ -112,7 +112,11 @@ changeKeylayout() {
if mount -o remount,rw /system; then
resize2fs "$(grep ' /system ' /proc/mounts | cut -d ' ' -f 1)" || true
elif mount -o remount,rw /; then
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))
resize2fs /dev/root || true
resize2fs /dev/tmp-phh || true
fi
mount -o remount,ro /system || true
mount -o remount,ro / || true