mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
a105924804
1. Example queries will run with an (optional) integration test. 2. Fix bad accesses with OS X package BOMs 3. Move spec files from ./osquery/tables/specs to ./specs 4. Remove server parsers (netlib) from client builds.
9 lines
323 B
Plaintext
9 lines
323 B
Plaintext
table_name("acpi_tables")
|
|
description("Firmware ACPI functional table common metadata and content.")
|
|
schema([
|
|
Column("name", TEXT, "ACPI table name"),
|
|
Column("size", INTEGER, "Size of compiled table data"),
|
|
Column("md5", TEXT, "MD5 hash of table content"),
|
|
])
|
|
implementation("system/acpi_tables@genACPITables")
|