1
0
Fork 0
out-of-tree/examples/kernel-module/.out-of-tree.toml

27 lines
741 B
TOML
Raw Normal View History

2018-10-07 10:48:25 +00:00
# out-of-tree configuration file
# docs at https://out-of-tree.io
2024-02-20 14:30:17 +00:00
name = "module_example"
2018-10-07 10:48:25 +00:00
type = "module"
[[targets]]
2018-10-07 10:48:25 +00:00
# Can be Ubuntu/CentOS/Debian/etc.
distro = { id = "Ubuntu", release = "16.04" }
2018-10-07 10:48:25 +00:00
# regex for `uname -r`
# See also: regex-golang.appspot.com
kernel = { regex = "4[.]4[.]0-70-.*" }
2018-10-07 10:48:25 +00:00
# [[targets]] may be defined unlimited number of times
[[targets]]
distro = { id = "Ubuntu", release = "18.04" }
2018-10-07 10:48:25 +00:00
# Also you can use only one kernel
kernel = { regex = "4[.]15[.]0-(24|29)-generic" }
2018-11-28 23:53:47 +00:00
[[targets]]
distro = { id = "Ubuntu", release = "18.04" }
2018-11-28 23:53:47 +00:00
# Also you can use only one kernel
kernel = { regex = "4[.]15[.]0-23-generic" }
2019-08-20 18:57:45 +00:00
[[targets]]
distro = { id = "CentOS", release = "7" }
kernel = { regex = "3[.]10[.]0-862.el7.x86_64" }