b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | #!/bin/sh |
| 2 | # |
| 3 | # Copyright (C) 2011-2012 OpenWrt.org |
| 4 | # |
| 5 | |
| 6 | [ -e /etc/config/ubootenv ] && exit 0 |
| 7 | |
| 8 | touch /etc/config/ubootenv |
| 9 | |
| 10 | . /lib/uboot-envtools.sh |
| 11 | . /lib/functions.sh |
| 12 | |
| 13 | board=$(board_name) |
| 14 | |
| 15 | case "$board" in |
| 16 | alfa-network,ac1200rm|\ |
| 17 | alfa-network,awusfree1|\ |
| 18 | alfa-network,quad-e4g|\ |
| 19 | alfa-network,r36m-e4g|\ |
| 20 | alfa-network,tube-e4g|\ |
| 21 | engenius,esr600h) |
| 22 | ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x1000" "0x1000" |
| 23 | ;; |
| 24 | allnet,all0256n-4m|\ |
| 25 | allnet,all0256n-8m|\ |
| 26 | allnet,all5002) |
| 27 | ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x10000" |
| 28 | ;; |
| 29 | ampedwireless,ally-00x19k|\ |
| 30 | ampedwireless,ally-r1900k) |
| 31 | ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x1000" "0x20000" "4" |
| 32 | ;; |
| 33 | buffalo,wsr-1166dhp|\ |
| 34 | buffalo,wsr-600dhp|\ |
| 35 | mediatek,linkit-smart-7688|\ |
| 36 | samknows,whitebox-v8|\ |
| 37 | xiaomi,mi-router-3g-v2|\ |
| 38 | xiaomi,mi-router-4a-gigabit|\ |
| 39 | xiaomi,mi-router-4c|\ |
| 40 | xiaomi,miwifi-nano|\ |
| 41 | zbtlink,zbt-wg2626|\ |
| 42 | zte,mf283plus) |
| 43 | ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x1000" "0x10000" |
| 44 | ;; |
| 45 | hootoo,ht-tm05|\ |
| 46 | ravpower,rp-wd03) |
| 47 | idx="$(find_mtd_index u-boot-env)" |
| 48 | [ -n "$idx" ] && \ |
| 49 | ubootenv_add_uci_config "/dev/mtd$idx" "0x4000" "0x1000" "0x1000" |
| 50 | ;; |
| 51 | jcg,q20) |
| 52 | ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000" "0x20000" |
| 53 | ;; |
| 54 | linksys,ea7300-v1|\ |
| 55 | linksys,ea7300-v2|\ |
| 56 | linksys,ea7500-v2|\ |
| 57 | linksys,ea8100-v1|\ |
| 58 | xiaomi,mi-router-3g|\ |
| 59 | xiaomi,mi-router-3-pro|\ |
| 60 | xiaomi,mi-router-4|\ |
| 61 | xiaomi,mi-router-ac2100|\ |
| 62 | xiaomi,redmi-router-ac2100) |
| 63 | ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x1000" "0x20000" |
| 64 | ;; |
| 65 | zyxel,nr7101) |
| 66 | idx="$(find_mtd_index Config)" |
| 67 | [ -n "$idx" ] && \ |
| 68 | ubootenv_add_uci_config "/dev/mtd$idx" "0x0" "0x1000" "0x80000" |
| 69 | ;; |
| 70 | esac |
| 71 | |
| 72 | config_load ubootenv |
| 73 | config_foreach ubootenv_add_app_config ubootenv |
| 74 | |
| 75 | exit 0 |