Compiling recipe to GCD file works now.

This commit is contained in:
Markus Birth 2018-10-23 00:17:26 +02:00
parent 70c0734d34
commit 16f50bf91a
Signed by: mbirth
GPG Key ID: A9928D7A098C3A9A
3 changed files with 22 additions and 4 deletions

View File

@ -18,5 +18,5 @@ OUTFILE = sys.argv[2]
print("Opening recipe {}".format(RECIPE))
gcd = Gcd.from_recipe(RECIPE)
gcd.print_struct()
#print("Dumping to {}".format(OUTFILE))
#gcd.write_to_file(OUTFILE)
print("Dumping to {}".format(OUTFILE))
gcd.save(OUTFILE)

View File

@ -108,6 +108,18 @@ class Gcd:
print("☒ ONE OR MORE CHECKSUMS INVALID!")
return all_ok
def fix_checksums(self):
chksum = ChkSum()
chksum.add(GCD_SIG)
for tlv in self.struct:
if tlv.type_id == 0x0001:
chksum.add(b"\x01\x00\x01\x00")
expected_cs = chksum.get()
tlv.value = bytes([expected_cs])
chksum.add(bytes([expected_cs]))
else:
chksum.add(tlv.get())
def write_dump_block(self, f, name):
f.write("\n[BLOCK_{}]\n".format(name))
@ -193,12 +205,17 @@ class Gcd:
if len(read_bytes) < 0xff00:
break
bf.close()
print("Binary block")
else:
tlv = TLV.create_from_dump(params)
gcd.struct.append(tlv)
gcd.fix_checksums()
return gcd
def save(self, filename):
self.filename = filename
with open(filename, "wb") as f:
f.write(GCD_SIG)
for tlv in self.struct:
f.write(tlv.get())
f.write(b"\xff\xff\x00\x00") # footer
f.close()

View File

@ -140,6 +140,7 @@ class TLV2(TLV):
if k == "length":
self.value = b"\x00" * int(v)
self.length = len(self.value)
break
class TLV5(TLV):
def dump(self):