[source] treewide: fix device tree path in scripts

LEDE Commits lede-commits at lists.infradead.org
Fri May 26 06:21:00 PDT 2017


mkresin pushed a commit to source.git, branch master:
https://git.lede-project.org/822ee54544c05d031411ab673d33e6f3c4f452a4

commit 822ee54544c05d031411ab673d33e6f3c4f452a4
Author: Mathias Kresin <dev at kresin.me>
AuthorDate: Fri May 26 15:13:42 2017 +0200

    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 at kresin.me>
---
 target/linux/ipq806x/base-files/lib/ipq806x.sh         | 2 +-
 target/linux/lantiq/base-files/lib/functions/lantiq.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/target/linux/ipq806x/base-files/lib/ipq806x.sh b/target/linux/ipq806x/base-files/lib/ipq806x.sh
index 2a08a19..a8950a5 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")
diff --git a/target/linux/lantiq/base-files/lib/functions/lantiq.sh b/target/linux/lantiq/base-files/lib/functions/lantiq.sh
index 6459e30..8c2e0ce 100644
--- a/target/linux/lantiq/base-files/lib/functions/lantiq.sh
+++ b/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")



More information about the lede-commits mailing list