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
|
2016-03-24 06:31:41 +08:00
|
|
|
alfa-ap120c | \
|
2012-10-27 16:55:41 +08:00
|
|
|
all0258n | \
|
2015-12-19 19:27:59 +08:00
|
|
|
cap324 | \
|
2012-11-18 17:32:40 +08:00
|
|
|
cap4200ag | \
|
2014-11-19 21:49:54 +08:00
|
|
|
carambola2 | \
|
2015-12-19 19:28:12 +08:00
|
|
|
cr3000 | \
|
2015-12-19 19:28:18 +08:00
|
|
|
cr5000 | \
|
2014-07-15 05:30:29 +08:00
|
|
|
eap300v2 | \
|
2016-07-15 18:00:04 +08:00
|
|
|
gl-ar300m | \
|
2013-07-18 01:31:21 +08:00
|
|
|
hornet-ub | \
|
2013-08-15 08:57:48 +08:00
|
|
|
hornet-ub-x2 | \
|
2016-07-08 21:19:46 +08:00
|
|
|
jwap230 | \
|
2015-09-15 04:11:43 +08:00
|
|
|
mr1750 | \
|
2016-05-20 23:53:17 +08:00
|
|
|
mr1750v2 | \
|
2013-02-01 23:50:52 +08:00
|
|
|
mr600 | \
|
2014-01-24 08:07:48 +08:00
|
|
|
mr600v2 | \
|
2014-11-15 00:54:45 +08:00
|
|
|
mr900 | \
|
2014-11-15 00:55:26 +08:00
|
|
|
mr900v2 | \
|
2015-02-08 03:59:08 +08:00
|
|
|
nbg6716 | \
|
2015-03-17 17:43:52 +08:00
|
|
|
om5p-an | \
|
2016-04-09 18:26:04 +08:00
|
|
|
om5p-ac | \
|
2016-04-09 18:26:28 +08:00
|
|
|
om5p-acv2 | \
|
2014-07-21 01:31:00 +08:00
|
|
|
om5p | \
|
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"
|
|
|
|
|
;;
|
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 | \
|
2016-05-20 23:53:11 +08:00
|
|
|
om2p-hsv3 | \
|
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"
|
|
|
|
|
;;
|
2016-06-20 05:37:37 +08:00
|
|
|
dr531)
|
|
|
|
|
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0xf800" "0x10000"
|
|
|
|
|
;;
|
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"
|
|
|
|
|
;;
|
2014-10-14 20:21:36 +08:00
|
|
|
qihoo-c301)
|
|
|
|
|
ubootenv_add_uci_config "/dev/mtd9" "0x0" "0x10000" "0x10000"
|
|
|
|
|
;;
|
2012-06-05 05:55:49 +08:00
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
config_load ubootenv
|
|
|
|
|
config_foreach ubootenv_add_app_config ubootenv
|
|
|
|
|
|
|
|
|
|
exit 0
|