Просмотр исходного кода

treewide: fix device tree path in scripts

The device tree is at /proc/device-tree/ without a base subdir.

Fixes: da472e5b30f6 ("treewide: access device tree from userspace via /proc/")

Signed-off-by: Mathias Kresin <[email protected]>
Mathias Kresin 8 лет назад
Родитель
Сommit
822ee54544

+ 1 - 1
target/linux/ipq806x/base-files/lib/ipq806x.sh

@@ -72,7 +72,7 @@ ipq806x_board_name() {
 ipq806x_get_dt_led() {
 	local label
 	local ledpath
-	local basepath="/proc/device-tree/base"
+	local basepath="/proc/device-tree"
 	local nodepath="$basepath/aliases/led-$1"
 
 	[ -f "$nodepath" ] && ledpath=$(cat "$nodepath")

+ 1 - 1
target/linux/lantiq/base-files/lib/functions/lantiq.sh

@@ -3,7 +3,7 @@
 lantiq_get_dt_led() {
 	local label
 	local ledpath
-	local basepath="/proc/device-tree/base"
+	local basepath="/proc/device-tree"
 	local nodepath="$basepath/aliases/led-$1"
 
 	[ -f "$nodepath" ] && ledpath=$(cat "$nodepath")