mirror of https://github.com/hak5/openwrt.git
treewide: fix device tree path in scripts
The device tree is at /proc/device-tree/ without a base subdir.
Fixes: da472e5b30
("treewide: access device tree from userspace via /proc/")
Signed-off-by: Mathias Kresin <dev@kresin.me>
openwrt-18.06
parent
361c8b4ee4
commit
822ee54544
|
@ -72,7 +72,7 @@ ipq806x_board_name() {
|
||||||
ipq806x_get_dt_led() {
|
ipq806x_get_dt_led() {
|
||||||
local label
|
local label
|
||||||
local ledpath
|
local ledpath
|
||||||
local basepath="/proc/device-tree/base"
|
local basepath="/proc/device-tree"
|
||||||
local nodepath="$basepath/aliases/led-$1"
|
local nodepath="$basepath/aliases/led-$1"
|
||||||
|
|
||||||
[ -f "$nodepath" ] && ledpath=$(cat "$nodepath")
|
[ -f "$nodepath" ] && ledpath=$(cat "$nodepath")
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
lantiq_get_dt_led() {
|
lantiq_get_dt_led() {
|
||||||
local label
|
local label
|
||||||
local ledpath
|
local ledpath
|
||||||
local basepath="/proc/device-tree/base"
|
local basepath="/proc/device-tree"
|
||||||
local nodepath="$basepath/aliases/led-$1"
|
local nodepath="$basepath/aliases/led-$1"
|
||||||
|
|
||||||
[ -f "$nodepath" ] && ledpath=$(cat "$nodepath")
|
[ -f "$nodepath" ] && ledpath=$(cat "$nodepath")
|
||||||
|
|
Loading…
Reference in New Issue