mediatek: filogic: add BananaPi BPi-R3 mini
[openwrt/openwrt.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/platform.sh
43
44 bootdev="$(platform_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 h3c,magic-nx30-pro|\
77 jcg,q30-pro|\
78 qihoo,360t7|\
79 tplink,tl-xdr4288|\
80 tplink,tl-xdr6086|\
81 tplink,tl-xdr6088|\
82 xiaomi,mi-router-ax3000t-ubootmod|\
83 xiaomi,mi-router-wr30u-ubootmod|\
84 xiaomi,redmi-router-ax6000-ubootmod|\
85 zyxel,ex5601-t0-ubootmod)
86 ubootenv_add_ubi_default
87 ;;
88 glinet,gl-mt2500|\
89 glinet,gl-mt6000)
90 local envdev=$(find_mmc_part "u-boot-env")
91 ubootenv_add_uci_config "$envdev" "0x0" "0x80000"
92 ;;
93 glinet,gl-mt3000)
94 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x80000" "0x20000"
95 ;;
96 jdcloud,re-cp-03)
97 local envdev=$(find_mmc_part "ubootenv" "mmcblk0")
98 ubootenv_add_uci_config "$envdev" "0x0" "0x40000" "0x40000" "1"
99 ubootenv_add_uci_config "$envdev" "0x40000" "0x40000" "0x40000" "1"
100 ;;
101 mercusys,mr90x-v1|\
102 routerich,ax3000)
103 local envdev=/dev/mtd$(find_mtd_index "u-boot-env")
104 ubootenv_add_uci_config "$envdev" "0x0" "0x20000" "0x20000" "1"
105 ;;
106 ubnt,unifi-6-plus)
107 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x80000" "0x10000"
108 ;;
109 xiaomi,mi-router-ax3000t|\
110 xiaomi,mi-router-wr30u-stock|\
111 xiaomi,redmi-router-ax6000-stock)
112 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x20000"
113 ubootenv_add_uci_sys_config "/dev/mtd2" "0x0" "0x10000" "0x20000"
114 ;;
115 zyxel,ex5601-t0)
116 local envdev=/dev/mtd$(find_mtd_index "u-boot-env")
117 ubootenv_add_uci_config "$envdev" "0x0" "0x20000" "0x40000" "2"
118 ;;
119 zyxel,ex5700-telenor)
120 ubootenv_add_uci_config "/dev/ubootenv" "0x0" "0x4000" "0x4000" "1"
121 ;;
122 esac
123
124 config_load ubootenv
125 config_foreach ubootenv_add_app_config
126
127 exit 0