base-files: Use -h instead of deprecated -L for symlink check
SVN-Revision: 26485
This commit is contained in:
parent
3549fb214f
commit
980190367c
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ start() {
|
|||
done
|
||||
|
||||
# create /dev/root if it doesn't exist
|
||||
[ -e /dev/root -o -L /dev/root ] || {
|
||||
[ -e /dev/root -o -h /dev/root ] || {
|
||||
rootdev=$(awk 'BEGIN { RS=" "; FS="="; } $1 == "root" { print $2 }' < /proc/cmdline)
|
||||
[ -n "$rootdev" ] && ln -s "$rootdev" /dev/root
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue