mvebu: add support for Turris Omnia
[openwrt/openwrt.git] / package / boot / uboot-envtools / files / ar71xx
1 #!/bin/sh
2 #
3 # Copyright (C) 2011-2014 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 a40|\
17 a60|\
18 alfa-ap120c|\
19 all0258n|\
20 ap121f|\
21 ap90q|\
22 ap91-5g|\
23 arduino-yun|\
24 cap324|\
25 cap4200ag|\
26 carambola2|\
27 cpe830|\
28 cpe870|\
29 cr3000|\
30 cr5000|\
31 e1700ac-v2|\
32 e600g-v2|\
33 e600gac-v2|\
34 eap300v2|\
35 ens202ext|\
36 gl-ar300m|\
37 gl-ar750|\
38 hornet-ub|\
39 hornet-ub-x2|\
40 jwap230|\
41 mr1750|\
42 mr1750v2|\
43 mr600|\
44 mr600v2|\
45 mr900|\
46 mr900v2|\
47 n5q|\
48 nbg6716|\
49 om5p|\
50 om5p-ac|\
51 om5p-acv2|\
52 om5p-an|\
53 r36a|\
54 rme-eg200|\
55 sr3200|\
56 t830|\
57 tube2h|\
58 wam250|\
59 wndr3700|\
60 xd3200)
61 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x10000"
62 ;;
63 alfa-ap96|\
64 all0315n|\
65 om2p|\
66 om2p-hs|\
67 om2p-hsv2|\
68 om2p-hsv3|\
69 om2p-hsv4|\
70 om2p-lc|\
71 om2pv2|\
72 om2pv4)
73 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x40000" "0x40000"
74 ;;
75 dap-2695-a1|\
76 wzr-hp-ag300h)
77 ubootenv_add_uci_config "/dev/mtd3" "0x0" "0x10000" "0x10000"
78 ;;
79 dr342|\
80 dr531)
81 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0xf800" "0x10000"
82 ;;
83 rambutan)
84 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000" "0x20000"
85 ubootenv_add_uci_config "/dev/mtd1" "0x100000" "0x20000" "0x20000"
86 ;;
87 qihoo-c301)
88 ubootenv_add_uci_config "/dev/mtd9" "0x0" "0x10000" "0x10000"
89 ;;
90 wi2a-ac200i)
91 ubootenv_add_uci_config "/dev/mtd4" "0x0" "0x8000" "0x10000"
92 ;;
93 esac
94
95 config_load ubootenv
96 config_foreach ubootenv_add_app_config ubootenv
97
98 exit 0