2019-09-26 22:01:47 +08:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2018-2019 Hisilicon Limited
|
|
|
|
|
|
|
|
if not is_linux
|
|
|
|
build = false
|
|
|
|
reason = 'only supported on Linux'
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
|
|
|
if arch_subdir != 'x86' and arch_subdir != 'arm' or not dpdk_conf.get('RTE_ARCH_64')
|
|
|
|
build = false
|
|
|
|
reason = 'only supported on x86_64 and arm64'
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2019-09-26 22:01:51 +08:00
|
|
|
sources = files('hns3_cmd.c',
|
2019-09-26 22:01:58 +08:00
|
|
|
'hns3_dcb.c',
|
2019-09-26 22:02:05 +08:00
|
|
|
'hns3_intr.c',
|
2019-09-26 22:01:47 +08:00
|
|
|
'hns3_ethdev.c',
|
2019-09-26 22:02:01 +08:00
|
|
|
'hns3_ethdev_vf.c',
|
2019-09-26 22:01:56 +08:00
|
|
|
'hns3_fdir.c',
|
|
|
|
'hns3_flow.c',
|
2019-09-26 22:02:00 +08:00
|
|
|
'hns3_mbx.c',
|
2019-09-26 22:02:04 +08:00
|
|
|
'hns3_regs.c',
|
2019-09-26 22:01:57 +08:00
|
|
|
'hns3_rss.c',
|
2019-09-26 22:02:02 +08:00
|
|
|
'hns3_rxtx.c',
|
2019-09-26 22:02:06 +08:00
|
|
|
'hns3_stats.c',
|
2019-09-26 22:02:08 +08:00
|
|
|
'hns3_mp.c')
|
|
|
|
|
2019-09-26 22:01:47 +08:00
|
|
|
deps += ['hash']
|