mirror of
https://github.com/outbackdingo/OpCore-Simplify.git
synced 2026-01-27 18:19:49 +00:00
Fix OemTableId and TableSignature conversion
This commit is contained in:
@@ -2905,9 +2905,9 @@ DefinitionBlock ("", "SSDT", 2, "ZPSS", "SURFACE", 0x00001000)
|
||||
"All": True,
|
||||
"Comment": "Delete {}".format(signature or oemtableid),
|
||||
"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"),
|
||||
"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):
|
||||
|
||||
Reference in New Issue
Block a user