Mikhail Klementev
bcf8de336f
BREAKING CHANGE: distro definition in the configuration files has switched from [[supported_kernels]] distro_type = "Ubuntu" distro_release = "16.04" ... to [[supported_kernels]] distro = { id = "Ubuntu", release = "16.04" } ...
27 lines
779 B
TOML
27 lines
779 B
TOML
# out-of-tree configuration file
|
|
# docs at https://out-of-tree.io
|
|
name = "out-of-tree module example"
|
|
type = "module"
|
|
|
|
[[supported_kernels]]
|
|
# Can be Ubuntu/CentOS/Debian/etc.
|
|
distro = { id = "Ubuntu", release = "16.04" }
|
|
# regex for `uname -r`
|
|
# See also: regex-golang.appspot.com
|
|
release_mask = "4[.]4[.]0-70-.*"
|
|
|
|
# [[supported_kernels]] may be defined unlimited number of times
|
|
[[supported_kernels]]
|
|
distro = { id = "Ubuntu", release = "18.04" }
|
|
# Also you can use only one kernel
|
|
release_mask = "4[.]15[.]0-(24|29)-generic"
|
|
|
|
[[supported_kernels]]
|
|
distro = { id = "Ubuntu", release = "18.04" }
|
|
# Also you can use only one kernel
|
|
release_mask = "4[.]15[.]0-23-generic"
|
|
|
|
[[supported_kernels]]
|
|
distro = { id = "CentOS", release = "7" }
|
|
release_mask = "3[.]10[.]0-862.el7.x86_64"
|