diff options
author | Mathias Kresin <dev@kresin.me> | 2017-05-26 15:13:42 +0200 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2017-05-26 15:18:30 +0200 |
commit | 822ee54544c05d031411ab673d33e6f3c4f452a4 (patch) | |
tree | 6a547974973d948bc480e617eb34ccd2933bc018 /target/linux/ipq806x/base-files/lib | |
parent | 361c8b4ee4a20035d4c967d9d67db90d53e924a2 (diff) | |
download | upstream-822ee54544c05d031411ab673d33e6f3c4f452a4.tar.gz upstream-822ee54544c05d031411ab673d33e6f3c4f452a4.tar.bz2 upstream-822ee54544c05d031411ab673d33e6f3c4f452a4.zip |
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 <dev@kresin.me>
Diffstat (limited to 'target/linux/ipq806x/base-files/lib')
-rw-r--r-- | target/linux/ipq806x/base-files/lib/ipq806x.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ipq806x/base-files/lib/ipq806x.sh b/target/linux/ipq806x/base-files/lib/ipq806x.sh index 2a08a19b80..a8950a5e85 100644 --- a/target/linux/ipq806x/base-files/lib/ipq806x.sh +++ b/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") |