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/ar71xx.sh
|
|
|
|
. /lib/uboot-envtools.sh
|
|
|
|
. /lib/functions.sh
|
|
|
|
|
|
|
|
board=$(ar71xx_board_name)
|
|
|
|
|
|
|
|
case "$board" in
|
2012-10-27 08:55:41 +00:00
|
|
|
all0258n | \
|
2012-11-18 09:32:40 +00:00
|
|
|
cap4200ag | \
|
2014-07-14 21:30:29 +00:00
|
|
|
eap300v2 | \
|
2013-07-17 17:31:21 +00:00
|
|
|
hornet-ub | \
|
2013-08-15 00:57:48 +00:00
|
|
|
hornet-ub-x2 | \
|
2013-02-01 15:50:52 +00:00
|
|
|
mr600 | \
|
2014-01-24 00:07:48 +00:00
|
|
|
mr600v2 | \
|
2014-07-20 17:31:00 +00:00
|
|
|
om5p | \
|
2014-07-14 16:03:36 +00:00
|
|
|
tube2h | \
|
2014-01-24 00:07:48 +00:00
|
|
|
wndr3700)
|
2012-06-04 21:55:49 +00:00
|
|
|
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x10000"
|
|
|
|
;;
|
2014-04-13 08:29:08 +00:00
|
|
|
nbg6716)
|
|
|
|
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x10000"
|
|
|
|
;;
|
2012-07-17 23:11:29 +00:00
|
|
|
alfa-ap96 | \
|
2012-08-27 14:55:33 +00:00
|
|
|
all0315n | \
|
2012-07-06 11:11:59 +00:00
|
|
|
om2p | \
|
2014-06-02 13:21:17 +00:00
|
|
|
om2pv2 | \
|
2012-10-17 08:26:04 +00:00
|
|
|
om2p-hs | \
|
2014-06-02 13:21:47 +00:00
|
|
|
om2p-hsv2 | \
|
2012-07-06 11:11:59 +00:00
|
|
|
om2p-lc)
|
2012-07-05 08:26:55 +00:00
|
|
|
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x40000" "0x40000"
|
|
|
|
;;
|
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"
|
|
|
|
;;
|
2012-06-04 21:55:49 +00:00
|
|
|
esac
|
|
|
|
|
|
|
|
config_load ubootenv
|
|
|
|
config_foreach ubootenv_add_app_config ubootenv
|
|
|
|
|
|
|
|
exit 0
|