package/uboot-envtools: add OpenMesh MR1750 support
[openwrt/svn-archive/archive.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/ar71xx.sh
11 . /lib/uboot-envtools.sh
12 . /lib/functions.sh
13
14 board=$(ar71xx_board_name)
15
16 case "$board" in
17 all0258n | \
18 cap4200ag | \
19 carambola2 | \
20 eap300v2 | \
21 hornet-ub | \
22 hornet-ub-x2 | \
23 mr1750 | \
24 mr600 | \
25 mr600v2 | \
26 mr900 | \
27 mr900v2 | \
28 nbg6716 | \
29 om5p-an | \
30 om5p | \
31 tube2h | \
32 wndr3700)
33 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x10000"
34 ;;
35 alfa-ap96 | \
36 all0315n | \
37 om2p | \
38 om2pv2 | \
39 om2p-hs | \
40 om2p-hsv2 | \
41 om2p-lc)
42 ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x40000" "0x40000"
43 ;;
44 wzr-hp-ag300h)
45 ubootenv_add_uci_config "/dev/mtd3" "0x0" "0x10000" "0x10000"
46 ;;
47 qihoo-c301)
48 ubootenv_add_uci_config "/dev/mtd9" "0x0" "0x10000" "0x10000"
49 ;;
50 esac
51
52 config_load ubootenv
53 config_foreach ubootenv_add_app_config ubootenv
54
55 exit 0