build_datafs.py 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. #!/usr/bin/env python3
  2. #
  3. # Build Actions datafs image
  4. #
  5. # Copyright (c) 2017 Actions Semiconductor Co., Ltd
  6. #
  7. # SPDX-License-Identifier: Apache-2.0
  8. #
  9. import os
  10. import sys
  11. import struct
  12. import argparse
  13. import platform
  14. import subprocess
  15. script_path = os.path.split(os.path.realpath(__file__))[0]
  16. def run_cmd(cmd):
  17. p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
  18. output, _ = p.communicate()
  19. # print("%s" % (output.rstrip()))
  20. return (output, p.returncode)
  21. def dd_file(input_file, output_file, block_size=1, count=None, seek=None, skip=None):
  22. """Wrapper around the dd command"""
  23. cmd = [
  24. "dd", "if=%s" % input_file, "of=%s" % output_file,
  25. "bs=%s" % block_size, "conv=notrunc"]
  26. if count is not None:
  27. cmd.append("count=%s" % count)
  28. if seek is not None:
  29. cmd.append("seek=%s" % seek)
  30. if skip is not None:
  31. cmd.append("skip=%s" % skip)
  32. (_, exit_code) = run_cmd(cmd)
  33. def new_file(filename, filesize, fillbyte = 0xff):
  34. with open(filename, 'wb') as f:
  35. f.write(bytearray([fillbyte]*filesize))
  36. def is_windows():
  37. sysstr = platform.system()
  38. if (sysstr.startswith('Windows') or \
  39. sysstr.startswith('MSYS') or \
  40. sysstr.startswith('MINGW') or \
  41. sysstr.startswith('CYGWIN')):
  42. return 1
  43. else:
  44. return 0
  45. def main(argv):
  46. parser = argparse.ArgumentParser(
  47. description='Build datafs image (fatfs)',
  48. )
  49. parser.add_argument('-o', dest = 'output_file', required=True)
  50. parser.add_argument('-d', dest = 'datafs_dir', required=True)
  51. parser.add_argument('-s', dest = 'image_size', required=True, type=lambda x: hex(int(x,0)))
  52. args = parser.parse_args();
  53. print('DATAFS: Build datafs image (fatfs)')
  54. # generate empty image file
  55. new_file(args.output_file, int(args.image_size, 0), 0xff)
  56. if (is_windows()):
  57. # windows
  58. makebootfat_path = script_path + '/utils/windows/makebootfat.exe'
  59. else:
  60. if ('32bit' == platform.architecture()[0]):
  61. # linux x86
  62. makebootfat_path = script_path + '/utils/linux-x86/makebootfat'
  63. else:
  64. # linux x86_64
  65. makebootfat_path = script_path + '/utils/linux-x86_64/makebootfat'
  66. cmd = [makebootfat_path, '-b', script_path + '/utils/bootsect.bin', \
  67. '-o', args.output_file, args.datafs_dir]
  68. (outmsg, exit_code) = run_cmd(cmd)
  69. if exit_code !=0:
  70. print('make fatfs error')
  71. print(outmsg)
  72. sys.exit(1)
  73. print('DATAFS: Generate datafs file: %s.' %args.output_file)
  74. if __name__ == "__main__":
  75. main(sys.argv)