From 98b01768397f982bd177b55e9bc67002b645b4d0 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Wed, 31 Jul 2024 00:55:45 +0300 Subject: meson: Enable simple pipeline handler on all platforms by default The simple pipeline handler is enabled by default on arm platforms only, as it used to support arm SoCs only. Now that support for the IPU6 has been added to the pipeline handler, it should be enabled on x86 platforms as well. Fix it. Fixes: 06e0d8508e5c ("libcamera: pipeline: simple: Enable intel-ipu6 with Soft ISP") Signed-off-by: Laurent Pinchart Reviewed-by: Javier Martinez Canillas Reviewed-by: Kieran Bingham Reviewed-by: Hans de Goede --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index f946eba9..316abdb8 100644 --- a/meson.build +++ b/meson.build @@ -219,7 +219,7 @@ pipelines_support = { 'mali-c55': arch_arm, 'rkisp1': arch_arm, 'rpi/vc4': arch_arm, - 'simple': arch_arm, + 'simple': ['any'], 'uvcvideo': ['any'], 'vimc': ['test'], } -- cgit v1.2.1