530588f3cd
For each driver where we optionally disable it, add in the reason why it's being disabled, so the user knows how to fix it. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Luca Boccassi <bluca@debian.org>
22 lines
420 B
Meson
22 lines
420 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
version = 2
|
|
|
|
allow_experimental_apis = true
|
|
|
|
install_headers('rte_bus_vmbus.h','rte_vmbus_reg.h')
|
|
|
|
sources = files('vmbus_common.c',
|
|
'vmbus_channel.c',
|
|
'vmbus_bufring.c',
|
|
'vmbus_common_uio.c')
|
|
|
|
if is_linux
|
|
sources += files('linux/vmbus_bus.c',
|
|
'linux/vmbus_uio.c')
|
|
includes += include_directories('linux')
|
|
else
|
|
build = false
|
|
reason = 'only supported on linux'
|
|
endif
|