2012-06-04 21:55:49 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2014-01-24 00:07:48 +00:00
|
|
|
# Copyright (C) 2011-2014 OpenWrt.org
|
2012-06-04 21:55:49 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
[ -e /etc/config/ubootenv ] && exit 0
|
|
|
|
|
|
|
|
touch /etc/config/ubootenv
|
|
|
|
|
|
|
|
. /lib/uboot-envtools.sh
|
|
|
|
. /lib/functions.sh
|
|
|
|
|
2017-05-12 20:36:07 +00:00
|
|
|
board=$(board_name)
|
2012-06-04 21:55:49 +00:00
|
|
|
|
|
|
|
case "$board" in
|
2016-09-23 07:38:34 +00:00
|
|
|
a40|\
|
2016-08-09 14:02:39 +00:00
|
|
|
a60|\
|
2016-12-13 21:30:11 +00:00
|
|
|
alfa-ap120c|\
|
|
|
|
all0258n|\
|
2017-03-31 11:43:06 +00:00
|
|
|
ap121f|\
|
2016-12-13 21:30:11 +00:00
|
|
|
ap90q|\
|
2017-06-13 08:33:34 +00:00
|
|
|
arduino-yun|\
|
2016-12-13 21:30:11 +00:00
|
|
|
cap324|\
|
|
|
|
cap4200ag|\
|
|
|
|
carambola2|\
|
|
|
|
cpe830|\
|
|
|
|
cpe870|\
|
|
|
|
cr3000|\
|
|
|
|
cr5000|\
|
|
|
|
eap300v2|\
|
2017-04-14 17:08:17 +00:00
|
|
|
ens202ext|\
|
2016-12-13 21:30:11 +00:00
|
|
|
gl-ar300m|\
|
|
|
|
hornet-ub|\
|
|
|
|
hornet-ub-x2|\
|
|
|
|
jwap230|\
|
|
|
|
mr1750|\
|
|
|
|
mr1750v2|\
|
|
|
|
mr600|\
|
|
|
|
mr600v2|\
|
|
|
|
mr900|\
|
|
|
|
mr900v2|\
|
|
|
|
nbg6716|\
|
|
|
|
om5p|\
|
|
|
|
om5p-ac|\
|
|
|
|
om5p-acv2|\
|
|
|
|
om5p-an|\
|
|
|
|
sr3200|\
|
|
|
|
tube2h|\
|
|
|
|
wndr3700|\
|
2016-12-02 22:01:44 +00:00
|
|
|
xd3200)
|
2012-06-04 21:55:49 +00:00
|
|
|
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x10000"
|
|
|
|
;;
|
2016-12-13 21:30:11 +00:00
|
|
|
alfa-ap96|\
|
|
|
|
all0315n|\
|
|
|
|
om2p|\
|
|
|
|
om2p-hs|\
|
|
|
|
om2p-hsv2|\
|
|
|
|
om2p-hsv3|\
|
2016-06-02 09:33:13 +00:00
|
|
|
om2p-hsv4|\
|
2016-12-13 21:30:11 +00:00
|
|
|
om2p-lc|\
|
2016-06-02 09:33:13 +00:00
|
|
|
om2pv2|\
|
|
|
|
om2pv4)
|
2012-07-05 08:26:55 +00:00
|
|
|
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x40000" "0x40000"
|
|
|
|
;;
|
2016-12-13 21:30:11 +00:00
|
|
|
dap-2695-a1|\
|
2013-03-03 21:59:35 +00:00
|
|
|
wzr-hp-ag300h)
|
2013-03-01 13:46:01 +00:00
|
|
|
ubootenv_add_uci_config "/dev/mtd3" "0x0" "0x10000" "0x10000"
|
|
|
|
;;
|
2017-10-23 11:39:30 +00:00
|
|
|
dr342|\
|
2016-12-13 21:09:07 +00:00
|
|
|
dr531)
|
|
|
|
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0xf800" "0x10000"
|
|
|
|
;;
|
2017-05-12 17:54:41 +00:00
|
|
|
rambutan)
|
|
|
|
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000" "0x20000"
|
|
|
|
ubootenv_add_uci_config "/dev/mtd1" "0x100000" "0x20000" "0x20000"
|
|
|
|
;;
|
2014-10-14 12:21:36 +00:00
|
|
|
qihoo-c301)
|
|
|
|
ubootenv_add_uci_config "/dev/mtd9" "0x0" "0x10000" "0x10000"
|
|
|
|
;;
|
2017-06-27 21:56:15 +00:00
|
|
|
wi2a-ac200i)
|
|
|
|
ubootenv_add_uci_config "/dev/mtd4" "0x0" "0x8000" "0x10000"
|
|
|
|
;;
|
2012-06-04 21:55:49 +00:00
|
|
|
esac
|
|
|
|
|
|
|
|
config_load ubootenv
|
|
|
|
config_foreach ubootenv_add_app_config ubootenv
|
|
|
|
|
|
|
|
exit 0
|