b4e8d995c8687d6250b027605d6f11aa73277af4
[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 dw33d|\
32 e1700ac-v2|\
33 e600g-v2|\
34 e600gac-v2|\
35 eap300v2|\
36 ens202ext|\
37 gl-ar300m|\
38 gl-ar750|\
39 hornet-ub|\
40 hornet-ub-x2|\
41 jwap230|\
42 koala|\
43 mr1750|\
44 mr1750v2|\
45 mr600|\
46 mr600v2|\
47 mr900|\
48 mr900v2|\
49 n5q|\
50 nbg6716|\
51 om5p|\
52 om5p-ac|\
53 om5p-acv2|\
54 om5p-an|\
55 r36a|\
56 rme-eg200|\
57 sr3200|\
58 t830|\
59 tube2h|\
60 wam250|\
61 wndr3700|\
62 xd3200)
63 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x10000"
64 ;;
65 alfa-ap96|\
66 all0315n|\
67 om2p|\
68 om2p-hs|\
69 om2p-hsv2|\
70 om2p-hsv3|\
71 om2p-hsv4|\
72 om2p-lc|\
73 om2pv2|\
74 om2pv4)
75 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x40000" "0x40000"
76 ;;
77 dap-2695-a1|\
78 wzr-hp-ag300h)
79 ubootenv_add_uci_config "/dev/mtd3" "0x0" "0x10000" "0x10000"
80 ;;
81 dr342|\
82 dr531)
83 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0xf800" "0x10000"
84 ;;
85 rambutan)
86 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000" "0x20000"
87 ubootenv_add_uci_config "/dev/mtd1" "0x100000" "0x20000" "0x20000"
88 ;;
89 qihoo-c301)
90 ubootenv_add_uci_config "/dev/mtd9" "0x0" "0x10000" "0x10000"
91 ;;
92 wi2a-ac200i)
93 ubootenv_add_uci_config "/dev/mtd4" "0x0" "0x8000" "0x10000"
94 ;;
95 esac
96
97 config_load ubootenv
98 config_foreach ubootenv_add_app_config ubootenv
99
100 exit 0