|
@@ -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() {
|