Browse Source

base-files: board.d: auto-set model id and name if /tmp/sysinfo is available

Signed-off-by: Jo-Philipp Wich <[email protected]>

SVN-Revision: 47752
Jo-Philipp Wich 10 years ago
parent
commit
61a99da4f9
1 changed files with 10 additions and 0 deletions
  1. 10 0
      package/base-files/files/lib/functions/uci-defaults-new.sh

+ 10 - 0
package/base-files/files/lib/functions/uci-defaults-new.sh

@@ -543,6 +543,16 @@ ucidef_set_rssimon() {
 board_config_update() {
 board_config_update() {
 	json_init
 	json_init
 	[ -f ${CFG} ] && json_load "$(cat ${CFG})"
 	[ -f ${CFG} ] && json_load "$(cat ${CFG})"
+
+	# auto-initialize model id and name if applicable
+	if ! json_is_a model object; then
+		json_select_object model
+			[ -f "/tmp/sysinfo/board_name" ] && \
+				json_add_string id "$(cat /tmp/sysinfo/board_name)"
+			[ -f "/tmp/sysinfo/model" ] && \
+				json_add_string name "$(cat /tmp/sysinfo/model)"
+		json_select ..
+	fi
 }
 }
 
 
 board_config_flush() {
 board_config_flush() {