diff options
Diffstat (limited to 'drivers/baseband')
-rw-r--r-- | drivers/baseband/meson.build | 7 | ||||
-rw-r--r-- | drivers/baseband/null/meson.build | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/drivers/baseband/meson.build b/drivers/baseband/meson.build new file mode 100644 index 00000000..52489df3 --- /dev/null +++ b/drivers/baseband/meson.build @@ -0,0 +1,7 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2018 Luca Boccassi <bluca@debian.org> + +drivers = ['null'] + +config_flag_fmt = 'RTE_LIBRTE_@0@_PMD' +driver_name_fmt = 'rte_pmd_@0@' diff --git a/drivers/baseband/null/meson.build b/drivers/baseband/null/meson.build new file mode 100644 index 00000000..64c29d86 --- /dev/null +++ b/drivers/baseband/null/meson.build @@ -0,0 +1,7 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2018 Luca Boccassi <bluca@debian.org> + +deps += ['bbdev', 'bus_vdev', 'ring'] +name = 'bbdev_null' +allow_experimental_apis = true +sources = files('bbdev_null.c') |