2012-06-05 05:55:49 +08:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2014-01-24 08:07:48 +08:00
|
|
|
# Copyright (C) 2011-2014 OpenWrt.org
|
2012-06-05 05:55:49 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
[ -e /etc/config/ubootenv ] && exit 0
|
|
|
|
|
|
|
|
touch /etc/config/ubootenv
|
|
|
|
|
|
|
|
. /lib/ar71xx.sh
|
|
|
|
. /lib/uboot-envtools.sh
|
|
|
|
. /lib/functions.sh
|
|
|
|
|
|
|
|
board=$(ar71xx_board_name)
|
|
|
|
|
|
|
|
case "$board" in
|
2012-10-27 16:55:41 +08:00
|
|
|
all0258n | \
|
2012-11-18 17:32:40 +08:00
|
|
|
cap4200ag | \
|
2013-07-18 01:31:21 +08:00
|
|
|
hornet-ub | \
|
2013-08-15 08:57:48 +08:00
|
|
|
hornet-ub-x2 | \
|
2013-02-01 23:50:52 +08:00
|
|
|
mr600 | \
|
2014-01-24 08:07:48 +08:00
|
|
|
mr600v2 | \
|
2014-07-15 00:03:36 +08:00
|
|
|
tube2h | \
|
2014-01-24 08:07:48 +08:00
|
|
|
wndr3700)
|
2012-06-05 05:55:49 +08:00
|
|
|
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x10000"
|
|
|
|
;;
|
2014-04-13 16:29:08 +08:00
|
|
|
nbg6716)
|
|
|
|
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x10000"
|
|
|
|
;;
|
2012-07-18 07:11:29 +08:00
|
|
|
alfa-ap96 | \
|
2012-08-27 22:55:33 +08:00
|
|
|
all0315n | \
|
2012-07-06 19:11:59 +08:00
|
|
|
om2p | \
|
2014-06-02 21:21:17 +08:00
|
|
|
om2pv2 | \
|
2012-10-17 16:26:04 +08:00
|
|
|
om2p-hs | \
|
2014-06-02 21:21:47 +08:00
|
|
|
om2p-hsv2 | \
|
2012-07-06 19:11:59 +08:00
|
|
|
om2p-lc)
|
2012-07-05 16:26:55 +08:00
|
|
|
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x40000" "0x40000"
|
|
|
|
;;
|
2013-03-04 05:59:35 +08:00
|
|
|
wzr-hp-ag300h)
|
2013-03-01 21:46:01 +08:00
|
|
|
ubootenv_add_uci_config "/dev/mtd3" "0x0" "0x10000" "0x10000"
|
|
|
|
;;
|
2012-06-05 05:55:49 +08:00
|
|
|
esac
|
|
|
|
|
|
|
|
config_load ubootenv
|
|
|
|
config_foreach ubootenv_add_app_config ubootenv
|
|
|
|
|
|
|
|
exit 0
|