mirror of
https://github.com/breeze303/openwrt-ipq.git
synced 2025-12-16 20:41:05 +00:00
48 lines
1005 B
Plaintext
48 lines
1005 B
Plaintext
[ -e /etc/config/ubootenv ] && exit 0
|
|
|
|
touch /etc/config/ubootenv
|
|
|
|
. /lib/uboot-envtools.sh
|
|
. /lib/functions.sh
|
|
|
|
board=$(board_name)
|
|
|
|
case "$board" in
|
|
8devices,mango-dvk|\
|
|
8devices,mango-dvk-sfp|\
|
|
cambiumnetworks,xe3-4)
|
|
idx="$(find_mtd_index 0:APPSBLENV)"
|
|
[ -n "$idx" ] && \
|
|
ubootenv_add_uci_config "/dev/mtd$idx" "0x0" "0x10000" "0x10000"
|
|
;;
|
|
cmiot,ax18|\
|
|
zn,m2|\
|
|
qihoo,v6|\
|
|
redmi,ax5|\
|
|
xiaomi,ax1800|\
|
|
glinet,gl-ax1800|\
|
|
glinet,gl-axt1800|\
|
|
netgear,wax214)
|
|
idx="$(find_mtd_index 0:appsblenv)"
|
|
[ -n "$idx" ] && \
|
|
ubootenv_add_uci_config "/dev/mtd$idx" "0x0" "0x40000" "0x20000" "2"
|
|
;;
|
|
redmi,ax5-jdcloud|\
|
|
jdcloud,ax1800-pro|\
|
|
jdcloud,ax6600)
|
|
mmcpart="$(find_mmc_part 0:APPSBLENV)"
|
|
[ -n "$mmcpart" ] && \
|
|
ubootenv_add_uci_config "$mmcpart" "0x0" "0x40000" "0x20000" "2"
|
|
;;
|
|
yuncore,fap650)
|
|
idx="$(find_mtd_index 0:appsblenv)"
|
|
[ -n "$idx" ] && \
|
|
ubootenv_add_uci_config "/dev/mtd$idx" "0x0" "0x10000" "0x10000"
|
|
;;
|
|
esac
|
|
|
|
config_load ubootenv
|
|
config_foreach ubootenv_add_app_config
|
|
|
|
exit 0
|