ramips: rt305x: add support for the Skyline SL-R7205 Wireless 3G router
[openwrt.git] / target / linux / ramips / base-files / lib / upgrade / platform.sh
1 #
2 # Copyright (C) 2010 OpenWrt.org
3 #
4
5 . /lib/ramips.sh
6
7 PART_NAME=firmware
8 RAMFS_COPY_DATA=/lib/ramips.sh
9
10 platform_check_image() {
11         local board=$(ramips_board_name)
12         local magic="$(get_magic_word "$1")"
13
14         [ "$ARGC" -gt 1 ] && return 1
15
16         case "$board" in
17         all0256n | \
18         bc2 | \
19         dir-300-b1 | \
20         dir-600-b1 | \
21         dir-600-b2 | \
22         esr-9753 | \
23         fonera20n | \
24         hw550-3g | \
25         mofi3500-3gn | \
26         nbg-419n | \
27         nw718 | \
28         omni-emb | \
29         rt-g32-b1 | \
30         rt-n15 | \
31         rt-n56u | \
32         sl-r7205 | \
33         w502u |\
34         wr6202 |\
35         v22rw-2x2 | \
36         wl341v3 | \
37         wli-tx4-ag300n | \
38         whr-g300n |\
39         wr512-3gn)
40                 [ "$magic" != "2705" ] && {
41                         echo "Invalid image type."
42                         return 1
43                 }
44                 return 0
45                 ;;
46         esac
47
48         echo "Sysupgrade is not yet supported on $board."
49         return 1
50 }
51
52 platform_do_upgrade() {
53         local board=$(ramips_board_name)
54
55         case "$board" in
56         *)
57                 default_do_upgrade "$ARGV"
58                 ;;
59         esac
60 }
61
62 disable_watchdog() {
63         killall watchdog
64         ( ps | grep -v 'grep' | grep '/dev/watchdog' ) && {
65                 echo 'Could not disable watchdog'
66                 return 1
67         }
68 }
69
70 append sysupgrade_pre_upgrade disable_watchdog