diff options
author | Dave Reisner <d@falconindy.com> | 2011-06-08 23:04:58 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2011-06-25 12:25:45 +0200 |
commit | 074ab58c616a00374c828d1d388880521bab6183 (patch) | |
tree | 05f99fdd99b9074db8912c3d28920fa47a831b3a /init | |
parent | a80f8a25871c807af64641ef364ceea852853233 (diff) | |
download | mkinitcpio-074ab58c616a00374c828d1d388880521bab6183.tar.gz mkinitcpio-074ab58c616a00374c828d1d388880521bab6183.tar.xz |
install/base: cleanup and simplify
* Create only the directories that are necessary. If others are
needed, they'll be created along the way. As part of this, we create
/new_root sooner in init, so it's less jarring to the user if they
request a break.
Signed-off-by: Dave Reisner <d@falconindy.com>
Diffstat (limited to 'init')
-rw-r--r-- | init | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,6 +4,7 @@ . /init_functions +mkdir -p /new_root /bin/mount -t proc proc /proc -o nosuid,noexec,nodev /bin/mount -t sysfs sys /sys -o nosuid,noexec,nodev if grep -q devtmpfs /proc/filesystems 2>/dev/null; then @@ -81,7 +82,6 @@ if [ "${break}" = "y" ]; then fi # Mount root at /new_root -mkdir -p /new_root ${mount_handler} /new_root [ -z "${init}" ] && init="/sbin/init" |