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