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
188 [ "$magic_long" != "68737173" -a "$magic_long" != "19852003" ] && {
189 echo "Invalid image type."
236 nbg460n_550n_550nh | \
240 [ "$magic" != "2705" ] && {
241 echo "Invalid image type."
248 tplink_pharos_check_image "$1" && return 0
254 dir825b_check_image "$1" && return 0
259 cybertan_check_image "$1" && return 0
266 [ "$magic_long" != "5ea3a417" ] && {
267 echo "Invalid image, bad magic: $magic_long"
271 local typemagic=$(seama_get_type_magic "$1")
272 [ "$typemagic" != "6669726d" ] && {
273 echo "Invalid image, bad type: $typemagic"
289 platform_check_image_openmesh "$magic_long" "$1" && return 0
337 [ "$magic" != "0100" ] && {
338 echo "Invalid image type."
345 hwid=$(tplink_get_hwid)
346 imageid=$(tplink_get_image_hwid "$1")
348 [ "$hwid" != "$imageid" ] && {
349 echo "Invalid image, hardware ID mismatch, hw:$hwid image:$imageid."
355 boot_size=$(tplink_get_image_boot_size "$1")
356 [ "$boot_size" != "00000000" ] && {
357 echo "Invalid image, it contains a bootloader."
365 alfa_check_image "$1" && return 0
370 [ "$magic_long" != "19852003" ] && {
371 echo "Invalid image type."
381 hw_magic="$(ar71xx_get_mtd_part_magic firmware)"
382 [ "$magic_long" != "$hw_magic" ] && {
383 echo "Invalid image, hardware ID mismatch, hw:$hw_magic image:$magic_long."
392 nand_do_platform_check $board $1
396 routerstation-pro | \
408 [ "$magic" != "4349" ] && {
409 echo "Invalid image. Use *-sysupgrade.bin files on this board"
413 local md5_img=$(dd if="$1" bs=2 skip=9 count=16 2>/dev/null)
414 local md5_chk=$(dd if="$1" bs=$CI_BLKSZ skip=1 2>/dev/null | md5sum -); md5_chk="${md5_chk%% *}"
416 if [ -n "$md5_img" -a -n "$md5_chk" ] && [ "$md5_img" = "$md5_chk" ]; then
419 echo "Invalid image. Contents do not match checksum (image:$md5_img calculated:$md5_chk)"
425 [ "$magic_long" != "32303034" ] && {
426 echo "Invalid image type."
434 echo "Sysupgrade is not yet supported on $board."
438 platform_do_upgrade() {
439 local board=$(ar71xx_board_name)
443 routerstation-pro | \
452 platform_do_upgrade_combined "$ARGV"
456 platform_do_upgrade_compex "$ARGV"
459 platform_do_upgrade_allnet "0x9f050000" "$ARGV"
462 platform_do_upgrade_allnet "0x9f080000" "$ARGV"
466 platform_do_upgrade_allnet "0xbf0a0000" "$ARGV"
470 platform_do_upgrade_dir825b "$ARGV"
482 platform_do_upgrade_openmesh "$ARGV"
485 MTD_CONFIG_ARGS="-s 0x180000"
486 default_do_upgrade "$ARGV"
489 default_do_upgrade "$ARGV"
496 ( ps | grep -v 'grep' | grep '/dev/watchdog' ) && {
497 echo 'Could not disable watchdog'
502 append sysupgrade_pre_upgrade disable_watchdog