diff options
author | maximilian attems <maks@debian.org> | 2007-04-02 13:29:25 +0200 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2007-04-02 13:29:25 +0200 |
commit | c4343742b3bf028e467ac8a58ead95c9bfefc628 (patch) | |
tree | 9f99e841f9829111bc78f828be819fe9022428a0 /scripts/local | |
parent | d21a00a23405d1db81ab05a12342145276ef2af0 (diff) | |
download | initramfs-tools-c4343742b3bf028e467ac8a58ead95c9bfefc628.tar.gz initramfs-tools-c4343742b3bf028e467ac8a58ead95c9bfefc628.zip |
first prerelease 0.86 + merge 0.85f
* kick mdrun script
* update control for lenny + ubuntu
* add _all_ ide, block and drivers
* use MODPROBE_OPTIONS and kill any modprobed arg
* small doc + whitespace fixes
Diffstat (limited to 'scripts/local')
-rw-r--r-- | scripts/local | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/local b/scripts/local index f4079d5..4e01472 100644 --- a/scripts/local +++ b/scripts/local @@ -40,9 +40,9 @@ mountroot () # We've given up, but we'll let the user fix matters if they can while [ ! -e "${ROOT}" ]; do - echo " Check root= bootarg cat /proc/cmdline" - echo " or missing modules, devices: cat /proc/modules ls /dev" - panic "ALERT! ${ROOT} does not exist. Dropping to a shell!" + echo "ALERT! ${ROOT} does not exist. Dropping to a shell!" + echo " Check your root= boot argument (cat /proc/cmdline)" + panic " Check for missing modules (cat /proc/modules), or device files (ls /dev)" done # Get the root filesystem type if not set @@ -67,7 +67,7 @@ mountroot () fi # FIXME This has no error checking - modprobe -q ${FSTYPE} + modprobe ${FSTYPE} # FIXME This has no error checking # Mount root |