2 # Copyright (C) 2011 OpenWrt.org
8 RAMFS_COPY_DATA=/lib/ar71xx.sh
13 platform_find_partitions() {
14 local first dev size erasesize name
15 while read dev size erasesize name; do
16 name=${name#'"'}; name=${name%'"'}
18 vmlinux.bin.l7|vmlinux|kernel|linux|linux.bin|rootfs|filesystem)
19 if [ -z "$first" ]; then
22 echo "$erasesize:$first:$name"
30 platform_find_kernelpart() {
32 for part in "${1%:*}" "${1#*:}"; do
34 vmlinux.bin.l7|vmlinux|kernel|linux|linux.bin)
42 platform_do_upgrade_combined() {
43 local partitions=$(platform_find_partitions)
44 local kernelpart=$(platform_find_kernelpart "${partitions#*:}")
45 local erase_size=$((0x${partitions%%:*})); partitions="${partitions#*:}"
46 local kern_length=0x$(dd if="$1" bs=2 skip=1 count=4 2>/dev/null)
47 local kern_blocks=$(($kern_length / $CI_BLKSZ))
48 local root_blocks=$((0x$(dd if="$1" bs=2 skip=5 count=4 2>/dev/null) / $CI_BLKSZ))
50 if [ -n "$partitions" ] && [ -n "$kernelpart" ] && \
51 [ ${kern_blocks:-0} -gt 0 ] && \
52 [ ${root_blocks:-0} -gt ${kern_blocks:-0} ] && \
53 [ ${erase_size:-0} -gt 0 ];
56 [ -f "$CONF_TAR" -a "$SAVE_CONFIG" -eq 1 ] && append="-j $CONF_TAR"
58 ( dd if="$1" bs=$CI_BLKSZ skip=1 count=$kern_blocks 2>/dev/null; \
59 dd if="$1" bs=$CI_BLKSZ skip=$((1+$kern_blocks)) count=$root_blocks 2>/dev/null ) | \
60 mtd -r $append -F$kernelpart:$kern_length:$CI_LDADR,rootfs write - $partitions
64 tplink_get_image_hwid() {
65 get_image "$@" | dd bs=4 count=1 skip=16 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"'
68 tplink_get_image_boot_size() {
69 get_image "$@" | dd bs=4 count=1 skip=37 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"'
72 platform_check_image() {
73 local board=$(ar71xx_board_name)
74 local magic="$(get_magic_word "$1")"
75 local magic_long="$(get_magic_long "$1")"
77 [ "$ARGC" -gt 1 ] && return 1
83 platform_check_image_allnet "$1" && return 0
99 [ "$magic_long" != "68737173" -a "$magic_long" != "19852003" ] && {
100 echo "Invalid image type."
134 nbg460n_550n_550nh | \
138 [ "$magic" != "2705" ] && {
139 echo "Invalid image type."
147 dir825b_check_image "$1" && return 0
155 platform_check_image_openmesh "$magic_long" "$1" && return 0
185 [ "$magic" != "0100" ] && {
186 echo "Invalid image type."
193 hwid=$(tplink_get_hwid)
194 imageid=$(tplink_get_image_hwid "$1")
196 [ "$hwid" != "$imageid" ] && {
197 echo "Invalid image, hardware ID mismatch, hw:$hwid image:$imageid."
203 boot_size=$(tplink_get_image_boot_size "$1")
204 [ "$boot_size" != "00000000" ] && {
205 echo "Invalid image, it contains a bootloader."
212 [ "$magic_long" != "19852003" ] && {
213 echo "Invalid image type."
222 hw_magic="$(ar71xx_get_mtd_part_magic firmware)"
223 [ "$magic_long" != "$hw_magic" ] && {
224 echo "Invalid image, hardware ID mismatch, hw:$hw_magic image:$magic_long."
230 [ "$magic" != "4e4c" ] && {
231 echo "Invalid image type."
237 routerstation-pro | \
246 [ "$magic" != "4349" ] && {
247 echo "Invalid image. Use *-sysupgrade.bin files on this board"
251 local md5_img=$(dd if="$1" bs=2 skip=9 count=16 2>/dev/null)
252 local md5_chk=$(dd if="$1" bs=$CI_BLKSZ skip=1 2>/dev/null | md5sum -); md5_chk="${md5_chk%% *}"
254 if [ -n "$md5_img" -a -n "$md5_chk" ] && [ "$md5_img" = "$md5_chk" ]; then
257 echo "Invalid image. Contents do not match checksum (image:$md5_img calculated:$md5_chk)"
264 echo "Sysupgrade is not yet supported on $board."
268 platform_do_upgrade() {
269 local board=$(ar71xx_board_name)
273 routerstation-pro | \
282 platform_do_upgrade_combined "$ARGV"
285 platform_do_upgrade_allnet "0x9f050000" "$ARGV"
288 platform_do_upgrade_allnet "0x9f080000" "$ARGV"
291 platform_do_upgrade_allnet "0xbf0a0000" "$ARGV"
295 platform_do_upgrade_dir825b "$ARGV"
302 platform_do_upgrade_openmesh "$ARGV"
305 default_do_upgrade "$ARGV"
312 ( ps | grep -v 'grep' | grep '/dev/watchdog' ) && {
313 echo 'Could not disable watchdog'
318 append sysupgrade_pre_upgrade disable_watchdog