diff options
author | Michael Prokop <mika@grml.org> | 2007-09-08 19:53:01 +0200 |
---|---|---|
committer | maximilian attems <max@stro.at> | 2007-09-08 19:53:01 +0200 |
commit | 6303982cbb523988b95fd79a10534ba7de81e703 (patch) | |
tree | acba11d6b8333f11432f14c3378b122155f9bb73 /init | |
parent | 41f9c1621e502a4af2f00f063d42e0f4ac53d6c2 (diff) | |
download | initramfs-tools-6303982cbb523988b95fd79a10534ba7de81e703.tar.gz initramfs-tools-6303982cbb523988b95fd79a10534ba7de81e703.zip |
fix init error message
You’ll notice a strange error message due to an empty
$init if the rootfs can’t be found.
Diffstat (limited to 'init')
-rwxr-xr-x | init | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -178,8 +178,8 @@ mount -n -o move /proc ${rootmnt}/proc # Check init bootarg if [ -n "${init}" ] && [ ! -x "${rootmnt}${init}" ]; then - init= echo "Target filesystem doesn't have ${init}." + init= fi # Search for valid init |