mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
[package] base-files: fix minor problem in init.d/boot
The script tests for the existance of /dev/root with test -e which fails if /dev/root is a dangling symlink making the call to ln fail. Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26483 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
8c41f9f5a3
commit
773893dc0f
@ -74,7 +74,7 @@ start() {
|
||||
done
|
||||
|
||||
# create /dev/root if it doesn't exist
|
||||
[ -e /dev/root ] || {
|
||||
[ -e /dev/root -o -L /dev/root ] || {
|
||||
rootdev=$(awk 'BEGIN { RS=" "; FS="="; } $1 == "root" { print $2 }' < /proc/cmdline)
|
||||
[ -n "$rootdev" ] && ln -s "$rootdev" /dev/root
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user