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
192 [ "$magic_long" != "68737173" -a "$magic_long" != "19852003" ] && {
193 echo "Invalid image type."
249 nbg460n_550n_550nh | \
253 [ "$magic" != "2705" ] && {
254 echo "Invalid image type."
261 tplink_pharos_check_image "$1" && return 0
267 dir825b_check_image "$1" && return 0
272 cybertan_check_image "$1" && return 0
279 [ "$magic_long" != "5ea3a417" ] && {
280 echo "Invalid image, bad magic: $magic_long"
284 local typemagic=$(seama_get_type_magic "$1")
285 [ "$typemagic" != "6669726d" ] && {
286 echo "Invalid image, bad type: $typemagic"
303 platform_check_image_openmesh "$magic_long" "$1" && return 0
358 [ "$magic" != "0100" ] && {
359 echo "Invalid image type."
366 hwid=$(tplink_get_hwid)
367 imageid=$(tplink_get_image_hwid "$1")
369 [ "$hwid" != "$imageid" ] && {
370 echo "Invalid image, hardware ID mismatch, hw:$hwid image:$imageid."
376 boot_size=$(tplink_get_image_boot_size "$1")
377 [ "$boot_size" != "00000000" ] && {
378 echo "Invalid image, it contains a bootloader."
386 alfa_check_image "$1" && return 0
390 unifi-outdoor-plus | \
392 [ "$magic_long" != "19852003" ] && {
393 echo "Invalid image type."
404 hw_magic="$(ar71xx_get_mtd_part_magic firmware)"
405 [ "$magic_long" != "$hw_magic" ] && {
406 echo "Invalid image, hardware ID mismatch, hw:$hw_magic image:$magic_long."
415 nand_do_platform_check $board $1
419 routerstation-pro | \
431 [ "$magic" != "4349" ] && {
432 echo "Invalid image. Use *-sysupgrade.bin files on this board"
436 local md5_img=$(dd if="$1" bs=2 skip=9 count=16 2>/dev/null)
437 local md5_chk=$(dd if="$1" bs=$CI_BLKSZ skip=1 2>/dev/null | md5sum -); md5_chk="${md5_chk%% *}"
439 if [ -n "$md5_img" -a -n "$md5_chk" ] && [ "$md5_img" = "$md5_chk" ]; then
442 echo "Invalid image. Contents do not match checksum (image:$md5_img calculated:$md5_chk)"
448 [ "$magic_long" != "32303034" ] && {
449 echo "Invalid image type."
457 echo "Sysupgrade is not yet supported on $board."
461 platform_pre_upgrade() {
462 local board=$(ar71xx_board_name)
474 platform_do_upgrade() {
475 local board=$(ar71xx_board_name)
479 routerstation-pro | \
488 platform_do_upgrade_combined "$ARGV"
492 platform_do_upgrade_compex "$ARGV"
495 platform_do_upgrade_allnet "0x9f050000" "$ARGV"
498 platform_do_upgrade_allnet "0x9f080000" "$ARGV"
502 platform_do_upgrade_allnet "0xbf0a0000" "$ARGV"
506 platform_do_upgrade_dir825b "$ARGV"
519 platform_do_upgrade_openmesh "$ARGV"
521 unifi-outdoor-plus | \
523 MTD_CONFIG_ARGS="-s 0x180000"
524 default_do_upgrade "$ARGV"
527 default_do_upgrade "$ARGV"
534 ( ps | grep -v 'grep' | grep '/dev/watchdog' ) && {
535 echo 'Could not disable watchdog'
540 append sysupgrade_pre_upgrade disable_watchdog