mirror of
https://github.com/86Box/bios-tools.git
synced 2026-02-24 20:35:33 -07:00
Remove APIC table from ACPI regex due to false positives
This commit is contained in:
@@ -1001,7 +1001,7 @@ class BonusAnalyzer(Analyzer):
|
||||
super().__init__('', *args, **kwargs)
|
||||
self._pci_ids = {}
|
||||
|
||||
self._acpi_table_pattern = re.compile(b'''(?:APIC|DSDT|FACP|PSDT|RSDT|SBST|SSDT)([\\x00-\\xFF]{4})[\\x00-\\xFF]{24}[\\x00\\x20-\\x7E]{4}''')
|
||||
self._acpi_table_pattern = re.compile(b'''(?:DSDT|FACP|PSDT|RSDT|SBST|SSDT)([\\x00-\\xFF]{4})[\\x00-\\xFF]{24}[\\x00\\x20-\\x7E]{4}''')
|
||||
self._adaptec_pattern = re.compile(b'''Adaptec (?:BIOS:|([\\x20-\\x7E]+) BIOS )''')
|
||||
self._ncr_pattern = re.compile(b''' SDMS \(TM\) V([0-9])''')
|
||||
self._orom_pattern = re.compile(b'''\\x55\\xAA[^\\x00][\\x00-\\xFF]{21}([\\x00-\\xFF]{4})''')
|
||||
|
||||
Reference in New Issue
Block a user