diff options
author | rbalocca <rbalocca@vyatta.com> | 2008-10-29 09:51:45 -0700 |
---|---|---|
committer | rbalocca <rbalocca@vyatta.com> | 2008-10-29 09:51:45 -0700 |
commit | c923fc8115a4c1e3c002221ecf6b691947058246 (patch) | |
tree | 185fa61ef8f91ac842c19cbd4399ff8bfb4b7ac1 | |
parent | c80f7c08a099a2c7614caf091b3cfe3ae581bee7 (diff) | |
download | initramfs-tools-c923fc8115a4c1e3c002221ecf6b691947058246.tar.gz initramfs-tools-c923fc8115a4c1e3c002221ecf6b691947058246.zip |
Remove startup warnings
-rwxr-xr-x | init | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/sh -x echo "Loading, please wait..." @@ -180,8 +180,8 @@ run_scripts /scripts/init-bottom [ "$quiet" != "y" ] && log_end_msg # Move virtual filesystems over to the real filesystem -mount -n -o move /sys ${rootmnt}/sys -mount -n -o move /proc ${rootmnt}/proc +mount -n -o move -t sysfs /sys ${rootmnt}/sys +mount -n -o move -t proc /proc ${rootmnt}/proc # Check init bootarg if [ -n "${init}" ] && [ ! -x "${rootmnt}${init}" ]; then |