2015-01-22 06:37:43 +00:00
|
|
|
table_name("kernel_info")
|
2015-02-07 03:05:50 +00:00
|
|
|
description("Basic active kernel information.")
|
2015-01-22 06:37:43 +00:00
|
|
|
schema([
|
2015-07-16 06:23:42 +00:00
|
|
|
Column("version", TEXT, "Kernel version"),
|
|
|
|
Column("arguments", TEXT, "Kernel arguments"),
|
|
|
|
Column("path", TEXT, "Kernel path"),
|
|
|
|
Column("device", TEXT, "Kernel device identifier"),
|
2015-01-22 06:37:43 +00:00
|
|
|
])
|
2016-05-18 19:23:52 +00:00
|
|
|
attributes(cacheable=True)
|
2015-01-22 06:37:43 +00:00
|
|
|
implementation("system/kernel_info@genKernelInfo")
|
2016-09-14 03:37:31 +00:00
|
|
|
fuzz_paths([
|
|
|
|
"/proc/cmdline",
|
|
|
|
"/proc/version",
|
|
|
|
])
|