build_sdfs.py 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #!/usr/bin/env python3
  2. #
  3. # Build Actions sdfs 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. #print(cmd)
  18. p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
  19. output, _ = p.communicate()
  20. #print("%s" % (output.rstrip()))
  21. return (output, p.returncode)
  22. def is_windows():
  23. sysstr = platform.system()
  24. if (sysstr.startswith('Windows') or \
  25. sysstr.startswith('MSYS') or \
  26. sysstr.startswith('MINGW') or \
  27. sysstr.startswith('CYGWIN')):
  28. return 1
  29. else:
  30. return 0
  31. def main(argv):
  32. parser = argparse.ArgumentParser(
  33. description='Build sdfs image (sdfs)',
  34. )
  35. parser.add_argument('-o', dest = 'output_file', required=True)
  36. parser.add_argument('-d', dest = 'sdfs_dir', required=True)
  37. args = parser.parse_args();
  38. print('SDFS: Build sdfs image (sdfs)')
  39. if (is_windows()):
  40. # windows
  41. make_sdfs_path = script_path + '/utils/windows/make_sdfs.exe'
  42. else:
  43. if ('32bit' == platform.architecture()[0]):
  44. # linux x86
  45. make_sdfs_path = script_path + '/utils/linux-x86/make_sdfs'
  46. else:
  47. # linux x86_64
  48. make_sdfs_path = script_path + '/utils/linux-x86_64/make_sdfs'
  49. cmd = [make_sdfs_path, args.sdfs_dir, args.output_file]
  50. (outmsg, exit_code) = run_cmd(cmd)
  51. if exit_code !=0:
  52. print('make fatfs error')
  53. print(outmsg)
  54. sys.exit(1)
  55. print('SDFS: Generate sdfs file: %s.' %args.output_file)
  56. if __name__ == "__main__":
  57. main(sys.argv)