mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-30 10:39:04 +00:00
da472e5b30
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>
18 lines
358 B
Bash
18 lines
358 B
Bash
#!/bin/sh
|
|
|
|
lantiq_get_dt_led() {
|
|
local label
|
|
local ledpath
|
|
local basepath="/proc/device-tree/base"
|
|
local nodepath="$basepath/aliases/led-$1"
|
|
|
|
[ -f "$nodepath" ] && ledpath=$(cat "$nodepath")
|
|
[ -n "$ledpath" ] && label=$(cat "$basepath$ledpath/label")
|
|
|
|
echo "$label"
|
|
}
|
|
|
|
lantiq_is_vdsl_system() {
|
|
grep -qE "system type.*: (VR9|xRX200)" /proc/cpuinfo
|
|
}
|