mirror of
https://github.com/outbackdingo/OpCore-Simplify.git
synced 2026-08-25 14:53:06 +00:00
Fix OemTableId and TableSignature conversion
This commit is contained in:
@@ -2905,9 +2905,9 @@ DefinitionBlock ("", "SSDT", 2, "ZPSS", "SURFACE", 0x00001000)
|
|||||||
"All": True,
|
"All": True,
|
||||||
"Comment": "Delete {}".format(signature or oemtableid),
|
"Comment": "Delete {}".format(signature or oemtableid),
|
||||||
"Enabled": True,
|
"Enabled": True,
|
||||||
"OemTableId": self.utils.hex_to_bytes(self.utils.string_to_hex(table_data.get("id"))),
|
"OemTableId": self.utils.hex_to_bytes(binascii.hexlify(table_data.get("id")).decode()),
|
||||||
"TableLength": table_data.get("length"),
|
"TableLength": table_data.get("length"),
|
||||||
"TableSignature": self.utils.hex_to_bytes(self.utils.string_to_hex(table_data.get("signature")))
|
"TableSignature": self.utils.hex_to_bytes(binascii.hexlify(table_data.get("signature")).decode())
|
||||||
}
|
}
|
||||||
|
|
||||||
def fix_apic_processor_id(self):
|
def fix_apic_processor_id(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user