diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-12-03 21:13:12 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-12-03 21:13:12 +0000 |
commit | 4615944c71dcf8e21d8e90ea48ce6a6ba00a7b4c (patch) | |
tree | 987f3247669eb57aebdee2be3a37af7bbf40c769 /target/linux/ipq806x/base-files/etc/board.d/00_model | |
parent | b3f8340a5e36bcf1287985830adf51096c27445b (diff) | |
download | mtk-20170518-4615944c71dcf8e21d8e90ea48ce6a6ba00a7b4c.zip mtk-20170518-4615944c71dcf8e21d8e90ea48ce6a6ba00a7b4c.tar.gz mtk-20170518-4615944c71dcf8e21d8e90ea48ce6a6ba00a7b4c.tar.bz2 |
ipq806x: switch from uci-defaults to board.d
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 47730
Diffstat (limited to 'target/linux/ipq806x/base-files/etc/board.d/00_model')
-rw-r--r-- | target/linux/ipq806x/base-files/etc/board.d/00_model | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/target/linux/ipq806x/base-files/etc/board.d/00_model b/target/linux/ipq806x/base-files/etc/board.d/00_model new file mode 100644 index 0000000..ec07709 --- /dev/null +++ b/target/linux/ipq806x/base-files/etc/board.d/00_model @@ -0,0 +1,13 @@ +#!/bin/sh +# Copyright (C) 2015 OpenWrt.org + +. /lib/functions/uci-defaults-new.sh + +board_config_update + +ucidef_set_board_id "$(cat /tmp/sysinfo/board_name)" +ucidef_set_model_name "$(cat /tmp/sysinfo/model)" + +board_config_flush + +exit 0 |