ae48b2ee36db4d1ee3903b41e9b309ddee5ed5c6
[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 tube2h|\
57 wndr3700|\
58 xd3200)
59 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x10000"
60 ;;
61 alfa-ap96|\
62 all0315n|\
63 om2p|\
64 om2p-hs|\
65 om2p-hsv2|\
66 om2p-hsv3|\
67 om2p-hsv4|\
68 om2p-lc|\
69 om2pv2|\
70 om2pv4)
71 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x40000" "0x40000"
72 ;;
73 dap-2695-a1|\
74 wzr-hp-ag300h)
75 ubootenv_add_uci_config "/dev/mtd3" "0x0" "0x10000" "0x10000"
76 ;;
77 dr342|\
78 dr531)
79 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0xf800" "0x10000"
80 ;;
81 rambutan)
82 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000" "0x20000"
83 ubootenv_add_uci_config "/dev/mtd1" "0x100000" "0x20000" "0x20000"
84 ;;
85 qihoo-c301)
86 ubootenv_add_uci_config "/dev/mtd9" "0x0" "0x10000" "0x10000"
87 ;;
88 wi2a-ac200i)
89 ubootenv_add_uci_config "/dev/mtd4" "0x0" "0x8000" "0x10000"
90 ;;
91 esac
92
93 config_load ubootenv
94 config_foreach ubootenv_add_app_config ubootenv
95
96 exit 0