diff options
Diffstat (limited to 'rc.d/rc.sysinit')
-rwxr-xr-x | rc.d/rc.sysinit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 01799ce6..477f547d 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -53,8 +53,8 @@ fi action $"Mounting proc filesystem: " mount -n -t proc /proc /proc # Unmount the initrd, if necessary -if grep -q /boot/initrd /proc/mounts ; then - action $"Unmounting initrd: " umount /boot/initrd +if grep -q /initrd /proc/mounts ; then + action $"Unmounting initrd: " umount /initrd /sbin/blockdev --flushbufs /dev/ram0 >/dev/null 2>&1 fi |