mediatek: switch to fitblk for JDCloud RE-CP-03
[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 jdcloud,re-cp-03)
43 . /lib/upgrade/common.sh
44
45 bootdev="$(fitblk_get_bootdev)"
46 case "$bootdev" in
47 ubi*)
48 ubootenv_add_ubi_default
49 ;;
50 mmc*)
51 ubootenv_add_mmc_default "${bootdev%%p[0-9]*}"
52 ;;
53 mtd*)
54 ubootenv_add_nor_default
55 ;;
56 esac
57 ;;
58 cmcc,rax3000m)
59 case "$(cmdline_get_var root)" in
60 /dev/mmc*)
61 ubootenv_add_mmc_default
62 ;;
63 *)
64 ubootenv_add_ubi_default
65 ;;
66 esac
67 ;;
68 comfast,cf-e393ax)
69 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000" "0x80000"
70 ;;
71 cetron,ct3003|\
72 edgecore,eap111|\
73 netgear,wax220|\
74 zbtlink,zbt-z8102ax|\
75 zbtlink,zbt-z8103ax)
76 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000" "0x20000"
77 ;;
78 dlink,aquila-pro-ai-m30-a1)
79 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x40000" "0x40000"
80 ;;
81 h3c,magic-nx30-pro|\
82 jcg,q30-pro|\
83 netcore,n60|\
84 qihoo,360t7|\
85 tplink,tl-xdr4288|\
86 tplink,tl-xdr6086|\
87 tplink,tl-xdr6088|\
88 xiaomi,mi-router-ax3000t-ubootmod|\
89 xiaomi,mi-router-wr30u-ubootmod|\
90 xiaomi,redmi-router-ax6000-ubootmod|\
91 zyxel,ex5601-t0-ubootmod)
92 ubootenv_add_ubi_default
93 ;;
94 glinet,gl-mt2500|\
95 glinet,gl-mt6000)
96 local envdev=$(find_mmc_part "u-boot-env")
97 ubootenv_add_uci_config "$envdev" "0x0" "0x80000"
98 ;;
99 glinet,gl-mt3000)
100 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x80000" "0x20000"
101 ;;
102 mercusys,mr90x-v1|\
103 routerich,ax3000)
104 local envdev=/dev/mtd$(find_mtd_index "u-boot-env")
105 ubootenv_add_uci_config "$envdev" "0x0" "0x20000" "0x20000" "1"
106 ;;
107 openembed,som7981)
108 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x80000" "0x80000"
109 ubootenv_add_uci_sys_config "/dev/mtd3" "0x0" "0x100000" "0x100000"
110 ;;
111 ubnt,unifi-6-plus)
112 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x80000" "0x10000"
113 ;;
114 xiaomi,mi-router-ax3000t|\
115 xiaomi,mi-router-wr30u-stock|\
116 xiaomi,redmi-router-ax6000-stock)
117 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x20000"
118 ubootenv_add_uci_sys_config "/dev/mtd2" "0x0" "0x10000" "0x20000"
119 ;;
120 zyxel,ex5601-t0)
121 local envdev=/dev/mtd$(find_mtd_index "u-boot-env")
122 ubootenv_add_uci_config "$envdev" "0x0" "0x20000" "0x40000" "2"
123 ;;
124 zyxel,ex5700-telenor)
125 ubootenv_add_uci_config "/dev/ubootenv" "0x0" "0x4000" "0x4000" "1"
126 ;;
127 esac
128
129 config_load ubootenv
130 config_foreach ubootenv_add_app_config
131
132 exit 0