package/network/utils/iptables: fix PKG_CPE_ID
[openwrt/openwrt.git] / target / linux / ath79 / generic / base-files / lib / upgrade / platform.sh
1 #
2 # Copyright (C) 2011 OpenWrt.org
3 #
4
5 PART_NAME=firmware
6 REQUIRE_IMAGE_METADATA=1
7
8 RAMFS_COPY_BIN='fw_printenv fw_setenv'
9 RAMFS_COPY_DATA='/etc/fw_env.config /var/lock/fw_printenv.lock'
10
11 platform_check_image() {
12 local board=$(board_name)
13
14 case "$board" in
15 jjplus,ja76pf2|\
16 ubnt,routerstation|\
17 ubnt,routerstation-pro)
18 platform_check_image_redboot_fis "$1"
19 ;;
20 *)
21 return 0
22 ;;
23 esac
24 }
25
26 platform_do_upgrade() {
27 local board=$(board_name)
28
29 case "$board" in
30 adtran,bsap1800-v2|\
31 adtran,bsap1840)
32 platform_do_upgrade_redboot_fis "$1" vmlinux_2
33 ;;
34 allnet,all-wap02860ac|\
35 araknis,an-300-ap-i-n|\
36 araknis,an-500-ap-i-ac|\
37 araknis,an-700-ap-i-ac|\
38 engenius,eap1200h|\
39 engenius,eap1750h|\
40 engenius,eap300-v2|\
41 engenius,eap600|\
42 engenius,ecb600|\
43 engenius,ens202ext-v1|\
44 engenius,enstationac-v1|\
45 engenius,ews660ap|\
46 watchguard,ap100|\
47 watchguard,ap200|\
48 watchguard,ap300)
49 ENV_SCRIPT="/tmp/fw_env"
50 IMAGE_LIST="tar tzf $1"
51 IMAGE_CMD="tar xzOf $1"
52 KERNEL_PART="loader"
53 ROOTFS_PART="fwconcat0"
54 KERNEL_FILE="uImage-lzma.bin"
55 ROOTFS_FILE="root.squashfs"
56 platform_do_upgrade_failsafe_datachk "$1"
57 ;;
58 fortinet,fap-220-b|\
59 fortinet,fap-221-b)
60 SKIP_HASH="1"
61 ENV_SCRIPT="/dev/null"
62 IMAGE_LIST="tar tzf $1"
63 IMAGE_CMD="tar xzOf $1"
64 KERNEL_PART="loader"
65 ROOTFS_PART="fwconcat0"
66 KERNEL_FILE="uImage-lzma.bin"
67 ROOTFS_FILE="root.squashfs"
68 platform_do_upgrade_failsafe_datachk "$1"
69 ;;
70 huawei,ap5030dn)
71 # Store beginning address of the "firmware" partition
72 # as KernelA address and KernelB address, each to BootupA & BootupB
73 # This is the address from which the bootloader will try to load the kernel.
74 echo -n -e "\x9e\x10\x00\x00\x9e\x10\x00\x00" | dd of=$(find_mtd_part BootupA) bs=1 seek=$((0x254)) conv=notrunc
75 echo -n -e "\x9e\x10\x00\x00\x9e\x10\x00\x00" | dd of=$(find_mtd_part BootupB) bs=1 seek=$((0x254)) conv=notrunc
76 default_do_upgrade "$1"
77 ;;
78 jjplus,ja76pf2)
79 platform_do_upgrade_redboot_fis "$1" linux
80 ;;
81 openmesh,a40|\
82 openmesh,a60|\
83 openmesh,mr600-v1|\
84 openmesh,mr600-v2|\
85 openmesh,mr900-v1|\
86 openmesh,mr900-v2|\
87 openmesh,mr1750-v1|\
88 openmesh,mr1750-v2|\
89 openmesh,om2p-v1|\
90 openmesh,om2p-v2|\
91 openmesh,om2p-v4|\
92 openmesh,om2p-hs-v1|\
93 openmesh,om2p-hs-v2|\
94 openmesh,om2p-hs-v3|\
95 openmesh,om2p-hs-v4|\
96 openmesh,om2p-lc|\
97 openmesh,om5p|\
98 openmesh,om5p-ac-v1|\
99 openmesh,om5p-ac-v2|\
100 openmesh,om5p-an)
101 PART_NAME="inactive"
102 platform_do_upgrade_openmesh "$1"
103 ;;
104 plasmacloud,pa300|\
105 plasmacloud,pa300e)
106 PART_NAME="inactive"
107 platform_do_upgrade_dualboot_datachk "$1"
108 ;;
109 ubnt,routerstation|\
110 ubnt,routerstation-pro)
111 platform_do_upgrade_redboot_fis "$1" kernel
112 ;;
113 *)
114 default_do_upgrade "$1"
115 ;;
116 esac
117 }