summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2017-12-02 12:48:31 +0100
committerLennart Poettering <lennart@poettering.net>2017-12-06 12:55:37 +0100
commit87d5e4f2866889eaeacc47daec75aab41eeed54d (patch)
treee1b7d67d6c538b9e7bb4b61baf9d3d45ef4acb56 /meson_options.txt
parent6a483c5b2f03ee8d28a8795ce1483393c78b1428 (diff)
downloadsystemd-87d5e4f2866889eaeacc47daec75aab41eeed54d.tar.gz
build-sys: make the dynamic UID range, and the container UID range configurable
Also, export these ranges in our pkg-config files.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 8c03b0c6de..f0c0506ff1 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -147,6 +147,18 @@ option('system-uid-max', type : 'string',
description : 'maximum system UID')
option('system-gid-max', type : 'string',
description : 'maximum system GID')
+option('dynamic-uid-min', type : 'string',
+ description : 'minimum dynamic UID',
+ value : '61184') # That's → 0x0000EF00 in hex
+option('dynamic-uid-max', type : 'string',
+ description : 'maximum dynamic UID',
+ value : '65519') # That's → 0x0000FFEF in hex
+option('container-uid-base-min', type : 'string',
+ description : 'minimum container UID base',
+ value : '524288') # That's → 0x00080000 in hex
+option('container-uid-base-max', type : 'string',
+ description : 'maximum container UID base',
+ value : '1878982656') # That's → 0x6FFF0000 in hex
option('tty-gid', type : 'string',
description : 'the numeric GID of the "tty" group',
value : '5')