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
|
|
|
|
"ea4500" | \
|
|
|
|
"ib62x0" | \
|
|
|
|
"pogo_e02")
|
2012-07-16 22:32:00 +00:00
|
|
|
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000" "0x20000"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
config_load ubootenv
|
|
|
|
config_foreach ubootenv_add_app_config ubootenv
|
|
|
|
|
|
|
|
exit 0
|