diff options
author | Dave Reisner <dreisner@archlinux.org> | 2011-11-26 04:15:24 +0100 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2011-11-29 11:56:41 +0100 |
commit | 94a39ff727782b95af688508404c114840ec3c2c (patch) | |
tree | ca9f3496289b1b6ec916a7f069f36b04b246c40a /init_functions | |
parent | ceb08369442948bc5c1772196cb1a1f395c57c07 (diff) | |
download | mkinitcpio-94a39ff727782b95af688508404c114840ec3c2c.tar.gz mkinitcpio-94a39ff727782b95af688508404c114840ec3c2c.tar.xz |
init_functions: rephrase bailout message
I think this error is more confusing to most people than it needs to be,
and it's not really accurate any longer. Generalize the message and
inform the user that we simply couldn't find the root device.
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Diffstat (limited to 'init_functions')
-rw-r--r-- | init_functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init_functions b/init_functions index 42e6249..69cd8fb 100644 --- a/init_functions +++ b/init_functions @@ -198,7 +198,7 @@ resolve_device() { default_mount_handler() { if [ ! -b "$root" ]; then - err "Unable to determine major/minor number of root device '$root'." + err "Unable to find root device '$root'." echo "You are being dropped to a recovery shell" echo " Type 'exit' to try and continue booting" launch_interactive_shell |