build: align wording of non-support reasons
Reasons for building not supported generally start with lowercase because printed as the second part of a line. Other changes: - "linux" should be "Linux" with a capital letter. - ARCH_X86_64 may be simply x86_64. - aarch64 is preferred over arm64. Signed-off-by: Thomas Monjalon <thomas@monjalon.net> Acked-by: David Marchand <david.marchand@redhat.com>
This commit is contained in:
parent
ba5b133e33
commit
135155a836
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
|
||||
deps += ['common_dpaax', 'eventdev']
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
|
||||
deps += ['common_dpaax', 'eventdev', 'kvargs']
|
||||
|
@ -20,5 +20,5 @@ if is_linux
|
||||
includes += include_directories('linux')
|
||||
else
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
|
||||
sources = files('dpaax_iova_table.c', 'dpaa_of.c', 'caamflib.c')
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
|
||||
deps += ['bus_vdev', 'bus_dpaa', 'security']
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
dep = dependency('libcrypto', required: false)
|
||||
if not dep.found()
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
|
||||
deps += ['security', 'mempool_dpaa2']
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
|
||||
deps += ['bus_dpaa', 'mempool_dpaa', 'security']
|
||||
|
@ -2,7 +2,7 @@
|
||||
# Copyright(c) 2018 Cavium, Inc
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
|
||||
deps += ['bus_pci']
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux or not dpdk_conf.has('RTE_ARCH_X86_64')
|
||||
build = false
|
||||
reason = 'only supported on ARCH_X86_64 Linux'
|
||||
reason = 'only supported on x86_64 Linux'
|
||||
subdir_done()
|
||||
endif
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
if not is_linux or not dpdk_conf.has('RTE_ARCH_X86_64')
|
||||
build = false
|
||||
reason = 'only supported on ARCH_X86_64 Linux'
|
||||
reason = 'only supported on x86_64 Linux'
|
||||
subdir_done()
|
||||
endif
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
deps += ['net_dpaa', 'crypto_dpaa_sec']
|
||||
sources = files('dpaa_eventdev.c')
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
deps += ['bus_vdev', 'net_dpaa2', 'crypto_dpaa2_sec']
|
||||
sources = files('dpaa2_hw_dpcon.c',
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
|
||||
deps += ['bus_dpaa']
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
|
||||
deps += ['bus_fslmc']
|
||||
|
@ -77,7 +77,7 @@ foreach subpath:subdirs
|
||||
|
||||
if disabled_drivers.contains(drv_path)
|
||||
build = false
|
||||
reason = 'Explicitly disabled via build config'
|
||||
reason = 'explicitly disabled via build config'
|
||||
else
|
||||
# pull in driver directory which should update all the local variables
|
||||
subdir(drv_path)
|
||||
@ -90,7 +90,7 @@ foreach subpath:subdirs
|
||||
foreach d:deps
|
||||
if not is_variable('shared_rte_' + d)
|
||||
build = false
|
||||
reason = 'Missing internal dependency, "@0@"'.format(d)
|
||||
reason = 'missing internal dependency, "@0@"'.format(d)
|
||||
message('Disabling @1@ [@2@]: missing internal dependency "@0@"'
|
||||
.format(d, name, 'drivers/' + drv_path))
|
||||
else
|
||||
|
@ -3,6 +3,6 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
sources = files('rte_eth_af_packet.c')
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
sources = files('avp_ethdev.c')
|
||||
headers = files('rte_avp_common.h', 'rte_avp_fifo.h')
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
|
||||
sources = files('axgbe_ethdev.c',
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
deps += ['mempool_dpaa']
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
|
||||
deps += ['mempool_dpaa2']
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
|
||||
deps += ['common_dpaax']
|
||||
|
@ -9,7 +9,7 @@ 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'
|
||||
reason = 'only supported on x86_64 and aarch64'
|
||||
subdir_done()
|
||||
endif
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
|
||||
build = false
|
||||
reason = 'only supported on 64-bit linux'
|
||||
reason = 'only supported on 64-bit Linux'
|
||||
endif
|
||||
sources = files('nfpcore/nfp_cpp_pcie_ops.c',
|
||||
'nfpcore/nfp_nsp.c',
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
headers = files('rte_eth_softnic.h')
|
||||
sources = files('rte_eth_softnic_tm.c',
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
sources = files(
|
||||
'rte_eth_tap.c',
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
sources = files('vdev_netvsc.c')
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
|
||||
build = false
|
||||
reason = 'only supported on 64-bit linux'
|
||||
reason = 'only supported on 64-bit Linux'
|
||||
endif
|
||||
sources = files('rte_kni.c')
|
||||
headers = files('rte_kni.h', 'rte_kni_common.h')
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
sources = files('rte_power.c', 'power_acpi_cpufreq.c',
|
||||
'power_kvm_vm.c', 'guest_channel.c',
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
if not is_linux
|
||||
build = false
|
||||
reason = 'only supported on linux'
|
||||
reason = 'only supported on Linux'
|
||||
endif
|
||||
if has_libnuma == 1
|
||||
dpdk_conf.set10('RTE_LIBRTE_VHOST_NUMA', true)
|
||||
|
Loading…
Reference in New Issue
Block a user