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

27 lines
729 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
name = "out-of-tree module example"
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
2019-08-17 15:30:42 +00:00
release_mask = "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
2019-08-17 15:30:42 +00:00
release_mask = "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
2019-08-17 15:30:42 +00:00
release_mask = "4[.]15[.]0-23-generic"
2019-08-20 18:57:45 +00:00
[[targets]]
distro = { id = "CentOS", release = "7" }
2019-08-20 18:57:45 +00:00
release_mask = "3[.]10[.]0-862.el7.x86_64"