forked from open-iscsi/open-iscsi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
31 lines (26 loc) · 1.47 KB
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# options for meson build system
# various subsystems that can be supported or not
option('no_systemd', type: 'boolean', value: false,
description: 'Do not use systemd [false]')
# where systemd units go (if supporting systemd)
option('systemddir', type: 'string', value: '/usr/lib/systemd',
description: 'Systemd directory [/usr/lib/systemd], if systemd used')
# is open-isns supporte?
option('isns', type: 'feature', value: 'enabled',
description: 'Use open-isns to allow target discovery via iSNS')
# these are in the 'sysconfigdir' (/etc by default) unless overridden
option('homedir', type: 'string', value: 'iscsi',
description: 'Set the HOME directory [/etc/iscsi]')
option('dbroot', type: 'string', value: '/var/lib/iscsi',
description: 'Set the DATABASE root directory [/var/lib/iscsi]')
option('lockdir', type: 'string', value: '/run/lock/iscsi',
description: 'Set the LOCK_DIR directory [/run/lock/iscsi]')
option('rulesdir', type: 'string', value: 'udev/rules.d',
description: 'Set the directory where udev rules go [/etc/udev/rules.d]')
# to be able to put binaries in /sbin or /usr/sbin, since
# older version of meson do not allow overriding sbindir
option('iscsi_sbindir', type: 'string', value: '/usr/sbin',
description: 'Set the directory where our binaries go [/usr/sbin]')
# default iqn prefix use for iscsi-iname
option('iqn_prefix', type: 'string', value: 'iqn.2016-04.com.open-iscsi',
description: 'Set the prefix used by iscsi-iname to generate iSCSI names')