build: Add a "default" driver selection to exclude virtual drivers

We will not want to install virtual drivers by default, yet they should
be inside the "all" category. So add a new "default" category and also a
separate array for the future virtual drivers.
This commit is contained in:
Benjamin Berg
2019-06-13 15:24:51 +02:00
parent 01ec1c5777
commit ce9702571b
2 changed files with 10 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
option('drivers',
description: 'Drivers to integrate',
description: 'Drivers to integrate, "default" selects the default set, "all" selects all drivers',
type: 'string',
value: 'all')
value: 'default')
option('udev_rules',
description: 'Whether to create a udev rules file',
type: 'boolean',