-
Notifications
You must be signed in to change notification settings - Fork 22
/
meson_options.txt
20 lines (19 loc) · 997 Bytes
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# ---------------------------------------------
# File: meson_options.txt
# Author: Tyler Erickson
# Last Modified: 9/18/2024
#
# Seagate 2024
#
# Description: options for meson.build
# ---------------------------------------------
#nvme passthrough support. Can be disabled if desrired (why would you?)
option('nvmept', type : 'feature', value : 'enabled')
#CSMI support. Mostly used on Windows but some Linux use as well. Adds support for RAID passthrough when CSMI is supported by a driver
option('csmiraid', type : 'feature', value : 'enabled')
#CISS support. Mostly affects Linux. No impact to Windows since no known CISS passthrough implemented today.
option('cissraid', type : 'feature', value : 'enabled')
#Intel RST Windows passthrough support. No impact to anything other than Windows builds.
option('irstpt', type : 'feature', value : 'enabled')
#openfabrics NVMe interface support. No impact to anything other than Windows builds
option('ofnvme', type : 'feature', value : 'enabled')