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
194 [ "$magic_long" != "68737173" -a "$magic_long" != "19852003" ] && {
195 echo "Invalid image type."
254 nbg460n_550n_550nh | \
259 [ "$magic" != "2705" ] && {
260 echo "Invalid image type."
267 tplink_pharos_check_image "$1" && return 0
274 dir825b_check_image "$1" && return 0
279 cybertan_check_image "$1" && return 0
286 [ "$magic_long" != "5ea3a417" ] && {
287 echo "Invalid image, bad magic: $magic_long"
291 local typemagic=$(seama_get_type_magic "$1")
292 [ "$typemagic" != "6669726d" ] && {
293 echo "Invalid image, bad type: $typemagic"
311 platform_check_image_openmesh "$magic_long" "$1" && return 0
371 local magic_ver="0100"
379 [ "$magic" != "$magic_ver" ] && {
380 echo "Invalid image type."
387 hwid=$(tplink_get_hwid)
388 imageid=$(tplink_get_image_hwid "$1")
390 [ "$hwid" != "$imageid" ] && {
391 echo "Invalid image, hardware ID mismatch, hw:$hwid image:$imageid."
397 boot_size=$(tplink_get_image_boot_size "$1")
398 [ "$boot_size" != "00000000" ] && {
399 echo "Invalid image, it contains a bootloader."
407 alfa_check_image "$1" && return 0
412 unifi-outdoor-plus | \
414 [ "$magic_long" != "19852003" ] && {
415 echo "Invalid image type."
426 hw_magic="$(ar71xx_get_mtd_part_magic firmware)"
427 [ "$magic_long" != "$hw_magic" ] && {
428 echo "Invalid image, hardware ID mismatch, hw:$hw_magic image:$magic_long."
437 nand_do_platform_check $board $1
441 routerstation-pro | \
453 [ "$magic" != "4349" ] && {
454 echo "Invalid image. Use *-sysupgrade.bin files on this board"
458 local md5_img=$(dd if="$1" bs=2 skip=9 count=16 2>/dev/null)
459 local md5_chk=$(dd if="$1" bs=$CI_BLKSZ skip=1 2>/dev/null | md5sum -); md5_chk="${md5_chk%% *}"
461 if [ -n "$md5_img" -a -n "$md5_chk" ] && [ "$md5_img" = "$md5_chk" ]; then
464 echo "Invalid image. Contents do not match checksum (image:$md5_img calculated:$md5_chk)"
470 [ "$magic_long" != "32303034" ] && {
471 echo "Invalid image type."
479 echo "Sysupgrade is not yet supported on $board."
483 platform_pre_upgrade() {
484 local board=$(ar71xx_board_name)
496 platform_do_upgrade() {
497 local board=$(ar71xx_board_name)
501 routerstation-pro | \
510 platform_do_upgrade_combined "$ARGV"
514 platform_do_upgrade_compex "$ARGV"
517 platform_do_upgrade_allnet "0x9f050000" "$ARGV"
520 platform_do_upgrade_allnet "0x9f080000" "$ARGV"
524 platform_do_upgrade_allnet "0xbf0a0000" "$ARGV"
528 platform_do_upgrade_dir825b "$ARGV"
542 platform_do_upgrade_openmesh "$ARGV"
544 unifi-outdoor-plus | \
546 MTD_CONFIG_ARGS="-s 0x180000"
547 default_do_upgrade "$ARGV"
550 default_do_upgrade "$ARGV"
557 ( ps | grep -v 'grep' | grep '/dev/watchdog' ) && {
558 echo 'Could not disable watchdog'
563 append sysupgrade_pre_upgrade disable_watchdog