summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2011-11-26 04:15:24 +0100
committerDave Reisner <dreisner@archlinux.org>2011-11-29 11:56:41 +0100
commit94a39ff727782b95af688508404c114840ec3c2c (patch)
treeca9f3496289b1b6ec916a7f069f36b04b246c40a
parentceb08369442948bc5c1772196cb1a1f395c57c07 (diff)
downloadmkinitcpio-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>
-rw-r--r--init_functions2
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