summaryrefslogtreecommitdiffstats
path: root/src/spdk/dpdk/kernel/linux/meson.build
blob: da79df1687cc9b2045a71306af8aac4da0955ca4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Intel Corporation

subdirs = ['igb_uio', 'kni']

# if we are cross-compiling we need kernel_dir specified
if get_option('kernel_dir') == '' and meson.is_cross_build()
	error('Need "kernel_dir" option for kmod compilation when cross-compiling')
endif

kernel_dir = get_option('kernel_dir')
if kernel_dir == ''
	# use default path for native builds
	kernel_version = run_command('uname', '-r').stdout().strip()
	kernel_dir = '/lib/modules/' + kernel_version
endif

# test running make in kernel directory, using "make kernelversion"
make_returncode = run_command('make', '-sC', kernel_dir + '/build',
		'kernelversion').returncode()
if make_returncode != 0
	error('Cannot compile kernel modules as requested - are kernel headers installed?')
endif

# DO ACTUAL MODULE BUILDING
foreach d:subdirs
	subdir(d)
endforeach