summaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
authorLoui Chang <louipc.ist@gmail.com>2009-08-03 14:24:21 +0200
committerAaron Griffin <aaronmgriffin@gmail.com>2009-08-05 19:29:15 +0200
commit7797debad9c55949482e111992c3cd10b221809f (patch)
treed45d6c9134b26600d31ea5d719dea2d7d066825d /init
parentb8800749b5e301bdf76c8aa1509ea5653d9e7c51 (diff)
downloadmkinitcpio-7797debad9c55949482e111992c3cd10b221809f.tar.gz
mkinitcpio-7797debad9c55949482e111992c3cd10b221809f.tar.xz
Do not rely on -L test; use -h instead.
See `man dash` Signed-off-by: Loui Chang <louipc.ist@gmail.com> Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'init')
-rw-r--r--init2
1 files changed, 1 insertions, 1 deletions
diff --git a/init b/init
index ee29725..c44904c 100644
--- a/init
+++ b/init
@@ -105,7 +105,7 @@ if [ -z "${nfsroot}" -a "${root}" != "/dev/nfs" ]; then
/bin/mknod /dev/root b ${BLOCKDEVICE} >/dev/null
export root="/dev/root"
fi
- if [ ! -b "${root}" -a ! -L "${root}" ]; then
+ if [ ! -b "${root}" -a ! -h "${root}" ]; then
err "Unable to detect or create root device '${root}'"
echo "You are being dropped to a recovery shell"
echo " Type 'reboot' to reboot"