mirror of
https://github.com/hzyitc/openwrt-redmi-ax3000.git
synced 2025-12-16 08:22:16 +00:00
23 lines
363 B
Bash
23 lines
363 B
Bash
#!/bin/sh
|
|
|
|
[ -e /etc/config/ubootenv ] && exit 0
|
|
|
|
touch /etc/config/ubootenv
|
|
|
|
. /lib/uboot-envtools.sh
|
|
. /lib/functions.sh
|
|
|
|
board=$(board_name)
|
|
case "$board" in
|
|
cmcc,rax3000q|\
|
|
redmi,ax3000|\
|
|
xiaomi,cr881x)
|
|
ubootenv_add_uci_config "/dev/mtd10" "0x0" "0x10000" "0x20000"
|
|
;;
|
|
esac
|
|
|
|
config_load ubootenv
|
|
config_foreach ubootenv_add_app_config ubootenv
|
|
|
|
exit 0
|