uboot-envtools: add support for ALFA Network AP91-5G
[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 nbg6716|\
44 om5p|\
45 om5p-ac|\
46 om5p-acv2|\
47 om5p-an|\
48 sr3200|\
49 tube2h|\
50 wndr3700|\
51 xd3200)
52 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x10000"
53 ;;
54 alfa-ap96|\
55 all0315n|\
56 om2p|\
57 om2p-hs|\
58 om2p-hsv2|\
59 om2p-hsv3|\
60 om2p-hsv4|\
61 om2p-lc|\
62 om2pv2|\
63 om2pv4)
64 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x40000" "0x40000"
65 ;;
66 dap-2695-a1|\
67 wzr-hp-ag300h)
68 ubootenv_add_uci_config "/dev/mtd3" "0x0" "0x10000" "0x10000"
69 ;;
70 dr342|\
71 dr531)
72 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0xf800" "0x10000"
73 ;;
74 rambutan)
75 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000" "0x20000"
76 ubootenv_add_uci_config "/dev/mtd1" "0x100000" "0x20000" "0x20000"
77 ;;
78 qihoo-c301)
79 ubootenv_add_uci_config "/dev/mtd9" "0x0" "0x10000" "0x10000"
80 ;;
81 wi2a-ac200i)
82 ubootenv_add_uci_config "/dev/mtd4" "0x0" "0x8000" "0x10000"
83 ;;
84 esac
85
86 config_load ubootenv
87 config_foreach ubootenv_add_app_config ubootenv
88
89 exit 0