Add sdxpinn-mount-fix

-Source Added
-build-ipk executable script added
-ipk added
This commit is contained in:
Cameron Thompson
2024-10-03 04:07:28 -04:00
parent 7594aa095b
commit 2feecf15e1
10 changed files with 370 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/ash
# Check if /etc is mounted
if grep -qs '/etc ' /proc/mounts; then
echo "Unmounting /etc..."
umount -lf /etc
fi
# Remount original rootfs as read-write
echo "Mounting / as read-write"
mount -o remount,rw /
exit 0