This patch introduces the Arkville baseband device driver build files. Signed-off-by: John Miller <john.mil...@atomicrules.com> --- drivers/baseband/ark/meson.build | 11 +++++++++++ drivers/baseband/ark/version.map | 3 +++ 2 files changed, 14 insertions(+) create mode 100644 drivers/baseband/ark/meson.build create mode 100644 drivers/baseband/ark/version.map
diff --git a/drivers/baseband/ark/meson.build b/drivers/baseband/ark/meson.build new file mode 100644 index 0000000000..b876f05c6e --- /dev/null +++ b/drivers/baseband/ark/meson.build @@ -0,0 +1,11 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2018 Luca Boccassi <bl...@debian.org> + +deps += ['common_ark', 'bbdev', 'bus_pci', 'pci', 'ring'] +sources = files( + 'ark_bbdev.c', + 'ark_bbdev_common.c', + 'ark_bbdev_custom.c' + ) + +includes += include_directories('../../common/ark') diff --git a/drivers/baseband/ark/version.map b/drivers/baseband/ark/version.map new file mode 100644 index 0000000000..4a76d1d52d --- /dev/null +++ b/drivers/baseband/ark/version.map @@ -0,0 +1,3 @@ +DPDK_21 { + local: *; +}; -- 2.25.1