Files
quectel-rgmii-toolkit/ipk-source/sdxpinn-mount-fix/CONTROL/preinst
Cameron Thompson 2feecf15e1 Add sdxpinn-mount-fix
-Source Added
-build-ipk executable script added
-ipk added
2024-10-03 04:07:28 -04:00

14 lines
235 B
Bash

#!/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