mirror of https://github.com/aredn/aredn.git
17 lines
588 B
Diff
17 lines
588 B
Diff
Index: openwrt/target/linux/ar71xx/base-files/lib/ar71xx.sh
|
|
===================================================================
|
|
--- openwrt.orig/target/linux/ar71xx/base-files/lib/ar71xx.sh
|
|
+++ openwrt/target/linux/ar71xx/base-files/lib/ar71xx.sh
|
|
@@ -1563,3 +1563,11 @@ ar71xx_board_detect() {
|
|
echo "$AR71XX_BOARD_NAME" > /tmp/sysinfo/board_name
|
|
echo "$AR71XX_MODEL" > /tmp/sysinfo/model
|
|
}
|
|
+ar71xx_board_name() {
|
|
+ local name
|
|
+
|
|
+ [ -f /tmp/sysinfo/board_name ] && name=$(cat /tmp/sysinfo/board_name)
|
|
+ [ -z "$name" ] && name="unknown"
|
|
+
|
|
+ echo "$name"
|
|
+}
|