Changes in tools/mkuimage.py [a44ae3dd:5711f6e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/mkuimage.py
ra44ae3dd r5711f6e 60 60 load_addr = 0 61 61 start_addr = 0 62 os_type = 5 #Linux is the default 62 63 63 64 while len(args) >= 2 and args[0][0] == '-': … … 71 72 elif opt == 'saddr': 72 73 start_addr = (int)(optarg, 0) 74 elif opt == 'ostype': 75 os_type = (int)(optarg, 0) 73 76 else: 74 77 print(base_name + ": Unrecognized option.") … … 85 88 86 89 try: 87 mkuimage(inf_name, outf_name, image_name, load_addr, start_addr )90 mkuimage(inf_name, outf_name, image_name, load_addr, start_addr, os_type) 88 91 except: 89 92 os.remove(outf_name) 90 93 raise 91 94 92 def mkuimage(inf_name, outf_name, image_name, load_addr, start_addr ):95 def mkuimage(inf_name, outf_name, image_name, load_addr, start_addr, os_type): 93 96 inf = open(inf_name, 'rb') 94 97 outf = open(outf_name, 'wb') … … 120 123 header.start_addr = start_addr # Address of entry point 121 124 header.data_crc = data_crc 122 header.os = 2 # NetBSD125 header.os = os_type 123 126 header.arch = 2 # ARM 124 127 header.img_type = 2 # Kernel 125 128 header.compression = 0 # None 126 header.img_name = image_name 129 header.img_name = image_name.encode('ascii') 127 130 128 131 header_crc = calc_crc32(header.pack()) … … 140 143 signed_crc = zlib.crc32(byteseq, 0) 141 144 if signed_crc < 0: 142 return (long(signed_crc) + (long(2) ** long(32))) # 2^32L145 return signed_crc + (1 << 32) 143 146 else: 144 147 return signed_crc … … 148 151 def print_syntax(cmd): 149 152 print("syntax: " + cmd + " [<options>] <raw_image> <uImage>") 150 print 153 print() 151 154 print("\traw_image\tInput image name (raw binary data)") 152 155 print("\tuImage\t\tOutput uImage name (U-Boot image)") 153 print 156 print() 154 157 print("options:") 155 158 print("\t-name <name>\tImage name (default: 'Noname')")
Note:
See TracChangeset
for help on using the changeset viewer.