mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 10:23:54 +00:00
9 lines
313 B
Plaintext
9 lines
313 B
Plaintext
table_name("device_firmware")
|
|
description("A best-effort list of discovered firmware versions.")
|
|
schema([
|
|
Column("type", TEXT, "Type of device"),
|
|
Column("device", TEXT, "The device name", index=True),
|
|
Column("version", TEXT, "Firmware version"),
|
|
])
|
|
implementation("device_firmware@genDeviceFirmware")
|