diff options
Diffstat (limited to 'packages/slugos-init/files/initscripts/umountinitrd.sh')
-rw-r--r-- | packages/slugos-init/files/initscripts/umountinitrd.sh | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/packages/slugos-init/files/initscripts/umountinitrd.sh b/packages/slugos-init/files/initscripts/umountinitrd.sh deleted file mode 100644 index 93f05a00f6..0000000000 --- a/packages/slugos-init/files/initscripts/umountinitrd.sh +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh -# -# umount /mnt, which is where the initrd ends up mounted -# if the directory /initrd is not present, if this fails -# then the /initrd is mounted and we want to remount that -# ro - this works round the shutdown -r hang problem -. /etc/default/functions - -case "$(machine)" in -nslu2) - ffspart="Flashdisk";; -*) - ffspart="filesystem";; -esac - -while read device directory remainder -do - case "$directory" in - /mnt) echo "InitRD: unmount initrd on /mnt" >&2 - umount /mnt;; - /initrd)# need the device for a remount - ffsdev="$(mtblockdev $ffspart)" - [ -n "$ffsdev" ] || \ - ffsdev="$(mtblockdev rootfs)" - echo "Remounting $ffsdev read-only on /initrd" >&2 - if test -n "$ffsdev" -a -b "$ffsdev" - then - mount -o remount,ro "$ffsdev" /initrd - else - echo "$ffspart: $ffsdev: flash device not found" >&2 - fi;; - esac -done </proc/mounts |