combined-ext-image.sh 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #!/bin/sh
  2. #
  3. # Copyright (C) 2011 OpenWrt.org
  4. #
  5. # This is free software, licensed under the GNU General Public License v2.
  6. # See /LICENSE for more information.
  7. #
  8. # Write image header followed by all specified files
  9. # The header is padded to 64k, format is:
  10. # CE magic word ("Combined Extended Image") (2 bytes)
  11. # <CE_VERSION> file format version field (2 bytes)
  12. # <TYPE> short description of the target device (32 bytes)
  13. # <NUM FILES> number of files following the header (2 byte)
  14. # <file1_name> name of the first file (32 bytes)
  15. # <file1_length> length of the first file encoded as zero padded 8 digit hex (8 bytes)
  16. # <file1_md5> md5 checksum of the first file (32 bytes)
  17. # <fileN_name> name of the Nth file (32 bytes)
  18. # <fileN_length> length of the Nth file encoded as zero padded 8 digit hex (8 bytes)
  19. # <fileN_md5> md5 checksum of the Nth file (32 bytes)
  20. ## version history
  21. # * version 1: initial file format with num files / name / length / md5 checksum
  22. ME="${0##*/}"
  23. usage() {
  24. echo "Usage: $ME <type> <ext filename> <file1> <filename1> [<file2> <filename2> <fileN> <filenameN>]"
  25. [ "$IMG_OUT" ] && rm -f "$IMG_OUT"
  26. exit 1
  27. }
  28. [ "$#" -lt 4 ] && usage
  29. CE_VERSION=1
  30. IMG_TYPE=$1; shift
  31. IMG_OUT=$1; shift
  32. FILE_NUM=$(($# / 2))
  33. FILES=""
  34. printf "CE%02x%-32s%02x" $CE_VERSION "$IMG_TYPE" $FILE_NUM > $IMG_OUT
  35. while [ "$#" -gt 1 ]
  36. do
  37. file=$1
  38. filename=$2
  39. [ ! -f "$file" ] && echo "$ME: Not a valid file: $file" && usage
  40. FILES="$FILES $file"
  41. md5=$(mkhash md5 "$file")
  42. printf "%-32s%08x%32s" "$filename" $(stat -c "%s" "$file") "${md5%% *}" >> $IMG_OUT
  43. shift 2
  44. done
  45. [ "$#" -eq 1 ] && echo "$ME: Filename not specified: $1" && usage
  46. mv $IMG_OUT $IMG_OUT.tmp
  47. dd if="$IMG_OUT.tmp" of="$IMG_OUT" bs=65536 conv=sync 2>/dev/null
  48. rm $IMG_OUT.tmp
  49. cat $FILES >> $IMG_OUT