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