ramips: rt305x: add support for the UR-336UN board
[openwrt/staging/chunkeey.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 freestation5 | \
25 hw550-3g | \
26 mofi3500-3gn | \
27 nbg-419n | \
28 nw718 | \
29 omni-emb | \
30 rt-g32-b1 | \
31 rt-n10-plus | \
32 rt-n15 | \
33 rt-n56u | \
34 sl-r7205 | \
35 w306r-v20 |\
36 w502u |\
37 wr6202 |\
38 v22rw-2x2 | \
39 wl341v3 | \
40 wl-330n | \
41 wli-tx4-ag300n | \
42 whr-g300n |\
43 ur-336un |\
44 wr512-3gn)
45 [ "$magic" != "2705" ] && {
46 echo "Invalid image type."
47 return 1
48 }
49 return 0
50 ;;
51 esac
52
53 echo "Sysupgrade is not yet supported on $board."
54 return 1
55 }
56
57 platform_do_upgrade() {
58 local board=$(ramips_board_name)
59
60 case "$board" in
61 *)
62 default_do_upgrade "$ARGV"
63 ;;
64 esac
65 }
66
67 disable_watchdog() {
68 killall watchdog
69 ( ps | grep -v 'grep' | grep '/dev/watchdog' ) && {
70 echo 'Could not disable watchdog'
71 return 1
72 }
73 }
74
75 append sysupgrade_pre_upgrade disable_watchdog