diff options
-rw-r--r-- | archiso/hooks/archiso | 2 | ||||
-rw-r--r-- | configs/syslinux-iso/overlay/etc/fstab | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/archiso/hooks/archiso b/archiso/hooks/archiso index 4a4239e..a129b20 100644 --- a/archiso/hooks/archiso +++ b/archiso/hooks/archiso @@ -127,7 +127,7 @@ archiso_mount_handler() { msg "done." msg ":: Mounting root (aufs) filesystem" - /bin/mount -t aufs -o dirs=/rw_branch=rw none "${newroot}" + /bin/mount -t aufs -o dirs=/rw_branch=rw union "${newroot}" if [ $? -ne 0 ]; then echo "ERROR: while mounting root (aufs) filesystem." launch_interactive_shell diff --git a/configs/syslinux-iso/overlay/etc/fstab b/configs/syslinux-iso/overlay/etc/fstab index 3c43a5e..b470b17 100644 --- a/configs/syslinux-iso/overlay/etc/fstab +++ b/configs/syslinux-iso/overlay/etc/fstab @@ -1,7 +1,7 @@ +# # /etc/fstab: static file system information +# # <file system> <dir> <type> <options> <dump> <pass> -aufs / aufs noauto 0 0 -none /dev/pts devpts defaults 0 0 -none /dev/shm tmpfs defaults 0 0 - -### Auto generated entries get added here: +union / auto noauto 0 0 +devpts /dev/pts devpts defaults 0 0 +shm /dev/shm tmpfs nodev,nosuid 0 0 |