2020-11-28 10:46:47 +00:00
|
|
|
[ -e /etc/config/ubootenv ] && exit 0
|
|
|
|
|
|
|
|
touch /etc/config/ubootenv
|
|
|
|
|
|
|
|
. /lib/uboot-envtools.sh
|
|
|
|
. /lib/functions.sh
|
|
|
|
|
|
|
|
board=$(board_name)
|
|
|
|
|
|
|
|
case "$board" in
|
|
|
|
d-link,dgs-1210-16|\
|
|
|
|
d-link,dgs-1210-28|\
|
|
|
|
d-link,dgs-1210-10p|\
|
2021-02-18 23:22:26 +00:00
|
|
|
zyxel,gs1900-8hp-v1|\
|
|
|
|
zyxel,gs1900-8hp-v2|\
|
2020-11-28 10:46:47 +00:00
|
|
|
zyxel,gs1900-10hp)
|
|
|
|
idx="$(find_mtd_index u-boot-env)"
|
|
|
|
[ -n "$idx" ] && \
|
|
|
|
ubootenv_add_uci_config "/dev/mtd$idx" "0x0" "0x400" "0x10000"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
idx="$(find_mtd_index u-boot-env)"
|
|
|
|
[ -n "$idx" ] && \
|
|
|
|
ubootenv_add_uci_config "/dev/mtd$idx" "0x0" "0x10000" "0x10000"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
config_load ubootenv
|
|
|
|
config_foreach ubootenv_add_app_config ubootenv
|
|
|
|
|
|
|
|
exit 0
|