8f64150fa5
Some drivers were missing reasons text for their disabling in meson. Signed-off-by: Thomas Monjalon <thomas@monjalon.net> Acked-by: Luca Boccassi <bluca@debian.org>
12 lines
301 B
Meson
12 lines
301 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright 2019 Intel Corporation
|
|
|
|
build = dpdk_conf.has('RTE_ARCH_X86')
|
|
reason = 'only supported on x86'
|
|
sources = files('ioat_rawdev.c',
|
|
'ioat_rawdev_test.c')
|
|
deps += ['rawdev', 'bus_pci', 'mbuf']
|
|
|
|
install_headers('rte_ioat_rawdev.h',
|
|
'rte_ioat_spec.h')
|