2012-06-05 05:55:49 +08:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2013-03-01 21:46:01 +08:00
|
|
|
# Copyright (C) 2011-2013 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-02-01 23:50:52 +08:00
|
|
|
mr600 | \
|
|
|
|
mr600v2)
|
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 | \
|
2012-10-17 16:26:04 +08:00
|
|
|
om2p-hs | \
|
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
|