Access the device tree via /proc/device-tree/ is the documented way to
access the properties. Everything else might not work in future.
Signed-off-by: Mathias Kresin <dev@kresin.me>
ipq806x_get_dt_led() {
local label
local ledpath
- local basepath="/sys/firmware/devicetree/base"
+ local basepath="/proc/device-tree/base"
local nodepath="$basepath/aliases/led-$1"
[ -f "$nodepath" ] && ledpath=$(cat "$nodepath")
lantiq_get_dt_led() {
local label
local ledpath
- local basepath="/sys/firmware/devicetree/base"
+ local basepath="/proc/device-tree/base"
local nodepath="$basepath/aliases/led-$1"
[ -f "$nodepath" ] && ledpath=$(cat "$nodepath")