filogic: Add support for D-Link AQUILA PRO AI M30
[openwrt/staging/stintel.git] / package / boot / uboot-envtools / files / mediatek_filogic
1 #
2 # Copyright (C) 2021 OpenWrt.org
3 #
4
5 [ -e /etc/config/ubootenv ] && exit 0
6
7 touch /etc/config/ubootenv
8
9 . /lib/uboot-envtools.sh
10 . /lib/functions.sh
11
12 board=$(board_name)
13
14 ubootenv_add_mmc_default() {
15 local envdev="$(find_mmc_part "ubootenv" "${1:-mmcblk0}")"
16 ubootenv_add_uci_config "$envdev" "0x0" "0x40000" "0x40000" "1"
17 ubootenv_add_uci_config "$envdev" "0x40000" "0x40000" "0x40000" "1"
18 }
19
20 ubootenv_add_nor_default() {
21 local envdev="/dev/mtd$(find_mtd_index "u-boot-env")"
22 ubootenv_add_uci_config "$envdev" "0x0" "0x20000" "0x20000" "1"
23 ubootenv_add_uci_config "$envdev" "0x20000" "0x20000" "0x20000" "1"
24 }
25
26 ubootenv_add_ubi_default() {
27 . /lib/upgrade/nand.sh
28 local envubi=$(nand_find_ubi ubi)
29 local envdev=/dev/$(nand_find_volume $envubi ubootenv)
30 local envdev2=/dev/$(nand_find_volume $envubi ubootenv2)
31 ubootenv_add_uci_config "$envdev" "0x0" "0x1f000" "0x1f000" "1"
32 ubootenv_add_uci_config "$envdev2" "0x0" "0x1f000" "0x1f000" "1"
33 }
34
35 case "$board" in
36 asus,rt-ax59u)
37 ubootenv_add_uci_config "/dev/mtd0" "0x100000" "0x20000" "0x20000"
38 ;;
39 bananapi,bpi-r3|\
40 bananapi,bpi-r3-mini|\
41 bananapi,bpi-r4)
42 . /lib/upgrade/common.sh
43
44 bootdev="$(fitblk_get_bootdev)"
45 case "$bootdev" in
46 ubi*)
47 ubootenv_add_ubi_default
48 ;;
49 mmc*)
50 ubootenv_add_mmc_default "${bootdev%%p[0-9]*}"
51 ;;
52 mtd*)
53 ubootenv_add_nor_default
54 ;;
55 esac
56 ;;
57 cmcc,rax3000m)
58 case "$(cmdline_get_var root)" in
59 /dev/mmc*)
60 ubootenv_add_mmc_default
61 ;;
62 *)
63 ubootenv_add_ubi_default
64 ;;
65 esac
66 ;;
67 comfast,cf-e393ax)
68 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000" "0x80000"
69 ;;
70 cetron,ct3003|\
71 netgear,wax220|\
72 zbtlink,zbt-z8102ax|\
73 zbtlink,zbt-z8103ax)
74 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000" "0x20000"
75 ;;
76 dlink,aquila-pro-ai-m30-a1)
77 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x40000" "0x40000"
78 ;;
79 h3c,magic-nx30-pro|\
80 jcg,q30-pro|\
81 netcore,n60|\
82 qihoo,360t7|\
83 tplink,tl-xdr4288|\
84 tplink,tl-xdr6086|\
85 tplink,tl-xdr6088|\
86 xiaomi,mi-router-ax3000t-ubootmod|\
87 xiaomi,mi-router-wr30u-ubootmod|\
88 xiaomi,redmi-router-ax6000-ubootmod|\
89 zyxel,ex5601-t0-ubootmod)
90 ubootenv_add_ubi_default
91 ;;
92 glinet,gl-mt2500|\
93 glinet,gl-mt6000)
94 local envdev=$(find_mmc_part "u-boot-env")
95 ubootenv_add_uci_config "$envdev" "0x0" "0x80000"
96 ;;
97 glinet,gl-mt3000)
98 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x80000" "0x20000"
99 ;;
100 jdcloud,re-cp-03)
101 local envdev=$(find_mmc_part "ubootenv" "mmcblk0")
102 ubootenv_add_uci_config "$envdev" "0x0" "0x40000" "0x40000" "1"
103 ubootenv_add_uci_config "$envdev" "0x40000" "0x40000" "0x40000" "1"
104 ;;
105 mercusys,mr90x-v1|\
106 routerich,ax3000)
107 local envdev=/dev/mtd$(find_mtd_index "u-boot-env")
108 ubootenv_add_uci_config "$envdev" "0x0" "0x20000" "0x20000" "1"
109 ;;
110 ubnt,unifi-6-plus)
111 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x80000" "0x10000"
112 ;;
113 xiaomi,mi-router-ax3000t|\
114 xiaomi,mi-router-wr30u-stock|\
115 xiaomi,redmi-router-ax6000-stock)
116 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x20000"
117 ubootenv_add_uci_sys_config "/dev/mtd2" "0x0" "0x10000" "0x20000"
118 ;;
119 zyxel,ex5601-t0)
120 local envdev=/dev/mtd$(find_mtd_index "u-boot-env")
121 ubootenv_add_uci_config "$envdev" "0x0" "0x20000" "0x40000" "2"
122 ;;
123 zyxel,ex5700-telenor)
124 ubootenv_add_uci_config "/dev/ubootenv" "0x0" "0x4000" "0x4000" "1"
125 ;;
126 esac
127
128 config_load ubootenv
129 config_foreach ubootenv_add_app_config
130
131 exit 0