diff options
author | Dan McGee <dan@archlinux.org> | 2007-10-10 23:01:56 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-10-10 23:05:26 -0500 |
commit | e5fb50c5737a42616622adb269547b7633b195d5 (patch) | |
tree | 12e375984ef5bb681ade0ad4573a44b5bb5f94d1 | |
parent | bc8ec134e107af1e92871ebba0b1d5c6e8cae9bc (diff) | |
download | archiso32-e5fb50c5737a42616622adb269547b7633b195d5.tar.xz |
Fix issue where stock Arch initscripts were unable to find /
If we add a root entry in our default fstab, we will be able to remount
root without issues in the initscripts, even if we don't have access to
the original mount locations and such.
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | default-config/etc/fstab | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/default-config/etc/fstab b/default-config/etc/fstab index 4b118fc..a63e3b8 100644 --- a/default-config/etc/fstab +++ b/default-config/etc/fstab @@ -2,6 +2,7 @@ # /etc/fstab: static file system information # # <file system> <dir> <type> <options> <dump> <pass> +unionfs / unionfs noauto 0 0 none /dev/pts devpts defaults 0 0 none /dev/shm tmpfs defaults 0 0 tmpfs /tmp tmpfs defaults 0 0 |