530588f3cd
For each driver where we optionally disable it, add in the reason why it's being disabled, so the user knows how to fix it. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Luca Boccassi <bluca@debian.org>
15 lines
281 B
Meson
15 lines
281 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright 2018 NXP
|
|
|
|
if not is_linux
|
|
build = false
|
|
reason = 'only supported on linux'
|
|
endif
|
|
|
|
deps += ['bus_dpaa', 'security']
|
|
sources = files('dpaa_sec.c')
|
|
|
|
allow_experimental_apis = true
|
|
|
|
includes += include_directories('../dpaa2_sec/')
|