diff options
author | cshore <cshore@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-03-27 05:39:53 +0000 |
---|---|---|
committer | cshore <cshore@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-03-27 05:39:53 +0000 |
commit | 28b23cf59c9031e09c878c6e7278aa510bff04a9 (patch) | |
tree | cc81668e0de5311fddd2ab3200e6bfa35e60ac86 /package/block-mount | |
parent | fe8722ec5913fd329cf7c296bc48265a2b2cb5d7 (diff) |
[package] block-mount block-extroot: Add commands /etc/init.d/fstab overlay_enable and /etc/init.d/fstab whole_root_enable to renable a disable rootfs.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26312 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/block-mount')
-rw-r--r-- | package/block-mount/files/fstab.init | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/package/block-mount/files/fstab.init b/package/block-mount/files/fstab.init index a3e0338f4..aba50ba93 100644 --- a/package/block-mount/files/fstab.init +++ b/package/block-mount/files/fstab.init @@ -8,6 +8,31 @@ START=20 +EXTRA_COMMANDS="overlay_enable whole_root_enable" +EXTRA_HELP=" overlay_enable Reenable overlay rootfs. (After you fix it). + whole_root_enable Reenable whole-disk rootfs. (After you fix it)." + +rootfs_enable() { + local extroot_type="$1" + + if [ ! -d /tmp/${extroot_type}-disabled ]; then + echo "No disabled ${extroot_type} present (/tmp/${extroot_type}-disabled). Can't renable." + exit 1 + fi + + rm -f /tmp/${extroot_type}-disabled/.extroot.md5sum + rm -f /tmp/${extroot_type}-disabled/etc/extroot.md5sum + echo "Please reboot router to complete re-enabling external rootfs." +} + +overlay_enable() { + rootfs_enable overlay +} + +whole_root_enable() { + rootfs_enable whole_root +} + do_mount() { local cfg="$1" config_mount_by_section "$cfg" |