2012-07-16 22:32:00 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2014-05-28 21:43:42 +00:00
|
|
|
# Copyright (C) 2012-2014 OpenWrt.org
|
2012-07-16 22:32:00 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
[ -e /etc/config/ubootenv ] && exit 0
|
|
|
|
|
|
|
|
touch /etc/config/ubootenv
|
|
|
|
|
2014-06-26 10:14:14 +00:00
|
|
|
. /lib/kirkwood.sh
|
2012-07-16 22:32:00 +00:00
|
|
|
. /lib/uboot-envtools.sh
|
|
|
|
. /lib/functions.sh
|
|
|
|
|
2014-06-26 10:14:14 +00:00
|
|
|
board=$(kirkwood_board_name)
|
|
|
|
|
|
|
|
case "$board" in
|
2016-12-13 21:30:11 +00:00
|
|
|
dockstar|\
|
|
|
|
guruplug-server-plus|\
|
|
|
|
ib62x0|\
|
|
|
|
linksys-viper|\
|
|
|
|
pogo_e02|\
|
|
|
|
sheevaplug|\
|
|
|
|
sheevaplug-esata)
|
2012-07-16 22:32:00 +00:00
|
|
|
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000" "0x20000"
|
|
|
|
;;
|
2016-12-13 21:30:11 +00:00
|
|
|
linksys-audi)
|
2015-11-11 12:48:29 +00:00
|
|
|
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x4000" "0x4000"
|
|
|
|
;;
|
2012-07-16 22:32:00 +00:00
|
|
|
esac
|
|
|
|
|
|
|
|
config_load ubootenv
|
|
|
|
config_foreach ubootenv_add_app_config ubootenv
|
|
|
|
|
|
|
|
exit 0
|