2 # Copyright (C) 2011 OpenWrt.org
5 .
/lib
/functions
/system.sh
9 RAMFS_COPY_DATA
=/lib
/ar71xx.sh
14 platform_find_partitions
() {
15 local first dev size erasesize name
16 while read dev size erasesize name
; do
17 name
=${name#'"'}; name
=${name%'"'}
19 vmlinux.bin.l7|vmlinux|kernel|linux|linux.bin|rootfs|filesystem
)
20 if [ -z "$first" ]; then
23 echo "$erasesize:$first:$name"
31 platform_find_kernelpart
() {
33 for part
in "${1%:*}" "${1#*:}"; do
35 vmlinux.bin.l7|vmlinux|kernel|linux|linux.bin
)
43 platform_do_upgrade_combined
() {
44 local partitions
=$
(platform_find_partitions
)
45 local kernelpart
=$
(platform_find_kernelpart
"${partitions#*:}")
46 local erase_size
=$
((0x
${partitions%%:*})); partitions
="${partitions#*:}"
47 local kern_length
=0x$
(dd if="$1" bs
=2 skip
=1 count
=4 2>/dev
/null
)
48 local kern_blocks
=$
(($kern_length / $CI_BLKSZ))
49 local root_blocks
=$
((0x$
(dd if="$1" bs
=2 skip
=5 count
=4 2>/dev
/null
) / $CI_BLKSZ))
51 if [ -n "$partitions" ] && [ -n "$kernelpart" ] && \
52 [ ${kern_blocks:-0} -gt 0 ] && \
53 [ ${root_blocks:-0} -gt 0 ] && \
54 [ ${erase_size:-0} -gt 0 ];
57 [ -f "$CONF_TAR" -a "$SAVE_CONFIG" -eq 1 ] && append
="-j $CONF_TAR"
59 ( dd if="$1" bs
=$CI_BLKSZ skip
=1 count
=$kern_blocks 2>/dev
/null
; \
60 dd if="$1" bs
=$CI_BLKSZ skip
=$
((1+$kern_blocks)) count
=$root_blocks 2>/dev
/null
) | \
61 mtd
-r $append -F$kernelpart:$kern_length:$CI_LDADR,rootfs
write - $partitions
65 tplink_get_image_hwid
() {
66 get_image
"$@" |
dd bs
=4 count
=1 skip
=16 2>/dev
/null |
hexdump -v -n 4 -e '1/1 "%02x"'
69 tplink_get_image_boot_size
() {
70 get_image
"$@" |
dd bs
=4 count
=1 skip
=37 2>/dev
/null |
hexdump -v -n 4 -e '1/1 "%02x"'
73 tplink_pharos_check_image
() {
74 local magic_long
="$(get_magic_long "$1")"
75 [ "$magic_long" != "7f454c46" ] && {
76 echo "Invalid image magic '$magic_long'"
80 local model_string
="$(tplink_pharos_get_model_string)"
83 # Here $1 is given to dd directly instead of get_image as otherwise the skip
84 # will take almost a second (as dd can't seek then)
86 # This will fail if the image isn't local, but that's fine: as the
87 # read loop won't be executed at all, it will return true, so the image
88 # is accepted (loading the first 1.5M of a remote image for this check seems
90 dd if="$1" bs
=1 skip
=1511432 count
=1024 2>/dev
/null |
while read line
; do
91 [ "$line" == "$model_string" ] && break
93 echo "Unsupported image (model not in support-list)"
100 seama_get_type_magic
() {
101 get_image
"$@" |
dd bs
=1 count
=4 skip
=53 2>/dev
/null |
hexdump -v -n 4 -e '1/1 "%02x"'
104 cybertan_get_image_magic
() {
105 get_image
"$@" |
dd bs
=8 count
=1 skip
=0 2>/dev
/null |
hexdump -v -n 8 -e '1/1 "%02x"'
108 cybertan_check_image
() {
109 local magic
="$(cybertan_get_image_magic "$1")"
110 local fw_magic
="$(cybertan_get_hw_magic)"
112 [ "$fw_magic" != "$magic" ] && {
113 echo "Invalid image, ID mismatch, got:$magic, but need:$fw_magic"
120 platform_do_upgrade_compex
() {
122 local fw_part
=$PART_NAME
123 local fw_mtd
=$
(find_mtd_part
$fw_part)
124 local fw_length
=0x$
(dd if="$fw_file" bs
=2 skip
=1 count
=4 2>/dev
/null
)
125 local fw_blocks
=$
(($fw_length / 65536))
127 if [ -n "$fw_mtd" ] && [ ${fw_blocks:-0} -gt 0 ]; then
129 [ -f "$CONF_TAR" -a "$SAVE_CONFIG" -eq 1 ] && append
="-j $CONF_TAR"
132 dd if="$fw_file" bs
=64k skip
=1 count
=$fw_blocks 2>/dev
/null | \
133 mtd
$append write - "$fw_part"
138 local magic_long
="$(get_magic_long "$1")"
139 local fw_part_size
=$
(mtd_get_part_size firmware
)
141 case "$magic_long" in
143 [ "$fw_part_size" != "16318464" ] && {
144 echo "Invalid image magic \"$magic_long\" for $fw_part_size bytes"
150 [ "$fw_part_size" != "7929856" ] && {
151 echo "Invalid image magic \"$magic_long\" for $fw_part_size bytes"
160 platform_check_image
() {
161 local board
=$
(ar71xx_board_name
)
162 local magic
="$(get_magic_word "$1")"
163 local magic_long
="$(get_magic_long "$1")"
165 [ "$#" -gt 1 ] && return 1
171 platform_check_image_allnet
"$1" && return 0
189 [ "$magic_long" != "68737173" -a "$magic_long" != "19852003" ] && {
190 echo "Invalid image type."
238 nbg460n_550n_550nh | \
242 [ "$magic" != "2705" ] && {
243 echo "Invalid image type."
250 tplink_pharos_check_image
"$1" && return 0
256 dir825b_check_image
"$1" && return 0
261 cybertan_check_image
"$1" && return 0
268 [ "$magic_long" != "5ea3a417" ] && {
269 echo "Invalid image, bad magic: $magic_long"
273 local typemagic
=$
(seama_get_type_magic
"$1")
274 [ "$typemagic" != "6669726d" ] && {
275 echo "Invalid image, bad type: $typemagic"
291 platform_check_image_openmesh
"$magic_long" "$1" && return 0
341 [ "$magic" != "0100" ] && {
342 echo "Invalid image type."
349 hwid
=$
(tplink_get_hwid
)
350 imageid
=$
(tplink_get_image_hwid
"$1")
352 [ "$hwid" != "$imageid" ] && {
353 echo "Invalid image, hardware ID mismatch, hw:$hwid image:$imageid."
359 boot_size
=$
(tplink_get_image_boot_size
"$1")
360 [ "$boot_size" != "00000000" ] && {
361 echo "Invalid image, it contains a bootloader."
369 alfa_check_image
"$1" && return 0
373 unifi-outdoor-plus | \
375 [ "$magic_long" != "19852003" ] && {
376 echo "Invalid image type."
387 hw_magic
="$(ar71xx_get_mtd_part_magic firmware)"
388 [ "$magic_long" != "$hw_magic" ] && {
389 echo "Invalid image, hardware ID mismatch, hw:$hw_magic image:$magic_long."
398 nand_do_platform_check
$board $1
402 routerstation-pro | \
414 [ "$magic" != "4349" ] && {
415 echo "Invalid image. Use *-sysupgrade.bin files on this board"
419 local md5_img
=$
(dd if="$1" bs
=2 skip
=9 count
=16 2>/dev
/null
)
420 local md5_chk
=$
(dd if="$1" bs
=$CI_BLKSZ skip
=1 2>/dev
/null |
md5sum -); md5_chk
="${md5_chk%% *}"
422 if [ -n "$md5_img" -a -n "$md5_chk" ] && [ "$md5_img" = "$md5_chk" ]; then
425 echo "Invalid image. Contents do not match checksum (image:$md5_img calculated:$md5_chk)"
431 [ "$magic_long" != "32303034" ] && {
432 echo "Invalid image type."
440 echo "Sysupgrade is not yet supported on $board."
444 platform_do_upgrade
() {
445 local board
=$
(ar71xx_board_name
)
449 routerstation-pro | \
458 platform_do_upgrade_combined
"$ARGV"
462 platform_do_upgrade_compex
"$ARGV"
465 platform_do_upgrade_allnet
"0x9f050000" "$ARGV"
468 platform_do_upgrade_allnet
"0x9f080000" "$ARGV"
472 platform_do_upgrade_allnet
"0xbf0a0000" "$ARGV"
476 platform_do_upgrade_dir825b
"$ARGV"
488 platform_do_upgrade_openmesh
"$ARGV"
490 unifi-outdoor-plus | \
492 MTD_CONFIG_ARGS
="-s 0x180000"
493 default_do_upgrade
"$ARGV"
496 default_do_upgrade
"$ARGV"
503 ( ps |
grep -v 'grep' |
grep '/dev/watchdog' ) && {
504 echo 'Could not disable watchdog'
509 append sysupgrade_pre_upgrade disable_watchdog