[03/10] drivers/bus: add reasons for components being disabled
Checks
Commit Message
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>
---
drivers/bus/dpaa/meson.build | 3 ++-
drivers/bus/fslmc/meson.build | 3 ++-
drivers/bus/vmbus/meson.build | 1 +
3 files changed, 5 insertions(+), 2 deletions(-)
@@ -4,7 +4,8 @@
version = 2
if not is_linux
- build = false
+ build = false
+ reason = 'only supported on linux'
endif
deps += ['common_dpaax', 'eventdev']
@@ -4,7 +4,8 @@
version = 2
if not is_linux
- build = false
+ build = false
+ reason = 'only supported on linux'
endif
deps += ['common_dpaax', 'eventdev', 'kvargs']
@@ -17,4 +17,5 @@ if is_linux
includes += include_directories('linux')
else
build = false
+ reason = 'only supported on linux'
endif