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