Searched refs:uboot_bin_filename (Results 1 – 2 of 2) sorted by relevance
/openbmc/u-boot/board/synopsys/axs10x/ |
H A D | headerize-axs.py | 32 def arg_verify(uboot_bin_filename, uboot_elf_filename, header_type): argument 33 if not os.path.isfile(uboot_bin_filename): 34 print("uboot bin file not exists: " + uboot_bin_filename) 58 uboot_bin_filename = "u-boot.bin" 84 if opt in ('-i', "--image"): uboot_bin_filename = arg 87 arg_verify(uboot_bin_filename, uboot_elf_filename, header_type) 89 uboot_img_size = os.path.getsize(uboot_bin_filename) 91 check_sum = calc_check_sum(uboot_bin_filename) 120 with open(uboot_bin_filename,'rb') as fi:
|
/openbmc/u-boot/board/synopsys/hsdk/ |
H A D | headerize-hsdk.py | 29 def arg_verify(uboot_bin_filename, uboot_elf_filename, arc_id): argument 34 if not os.path.isfile(uboot_bin_filename): 35 print("uboot bin file not exists: " + uboot_bin_filename) 53 uboot_bin_filename = "u-boot.bin" 75 if opt in ('-i', "--image"): uboot_bin_filename = arg 78 arg_verify(uboot_bin_filename, uboot_elf_filename, arc_id) 80 uboot_img_size = os.path.getsize(uboot_bin_filename) 82 check_sum = calc_check_sum(uboot_bin_filename) 102 with open(uboot_bin_filename,'rb') as fi:
|