diff options
author | Thomas Backlund <tmb@mageia.org> | 2013-04-13 20:06:58 +0000 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2013-04-13 20:06:58 +0000 |
commit | 7eaae459b670e6827a6d08cd1a1a1d54d09ab69a (patch) | |
tree | 7ca776064a5268e5846b7548f8e611bff4096f79 | |
parent | 2bf91d575df9fd09085c22264feaacaf2d3f6148 (diff) | |
download | drakiso-7eaae459b670e6827a6d08cd1a1a1d54d09ab69a.tar drakiso-7eaae459b670e6827a6d08cd1a1a1d54d09ab69a.tar.gz drakiso-7eaae459b670e6827a6d08cd1a1a1d54d09ab69a.tar.bz2 drakiso-7eaae459b670e6827a6d08cd1a1a1d54d09ab69a.tar.xz drakiso-7eaae459b670e6827a6d08cd1a1a1d54d09ab69a.zip |
umount_system_fs(): unmount /run too
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | draklive | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,5 @@ +- umount_system_fs(): unmount /run too + 2.1: - adapt for usbfs death, change /proc/bus/usb to /sys/kernel/debug/usb @@ -388,7 +388,7 @@ sub mount_system_fs { sub umount_system_fs { my ($live) = @_; - eval { fs::mount::umount($live->get_system_root . $_) } foreach qw(/dev /proc /sys/kernel/debug/usb /sys); + eval { fs::mount::umount($live->get_system_root . $_) } foreach qw(/dev /proc /run /sys/kernel/debug/usb /sys); } sub umount_external_fs { |