summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-09-28 09:33:30 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-09-28 14:22:37 +0200
commit77faadfdd3d2d934f52d1d35b60e774c494d84b8 (patch)
tree2f5f066dccd84fcf7ec1c5256cc4022f4b2bdc4d /meson_options.txt
parentacaa6368663a8972e3722751bd67bb1e0b3f272f (diff)
downloadsystemd-77faadfdd3d2d934f52d1d35b60e774c494d84b8.tar.gz
meson: drop the list of valid net naming schemes
We used 'combo' type for the scheme list. For a while we forgot to add new names, and recently aa0a23ec86 added v241, v243, v245, and v247. I want to allow defining new values during configuration, which means that we can't use meson to verify the list of options. So any value is allowed, but then two tests are added: one that will fail compilation if some invalid name is given (other than "latest"), and one that converts DEFAULT_NET_NAMING_SCHEME to a NamingScheme pointer.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt
index dcd3c01ae4..15be1959d1 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -200,8 +200,7 @@ option('fallback-hostname', type : 'string', value : 'localhost',
option('default-hierarchy', type : 'combo',
choices : ['legacy', 'hybrid', 'unified'], value : 'unified',
description : 'default cgroup hierarchy')
-option('default-net-naming-scheme', type : 'combo',
- choices : ['latest', 'v238', 'v239', 'v240', 'v241', 'v243', 'v245', 'v247', 'v249'],
+option('default-net-naming-scheme', type : 'string', value : 'latest',
description : 'default net.naming-scheme= value')
option('status-unit-format-default', type : 'combo',
choices : ['description', 'name', 'combined'],