From d369384399b912287c1a14db6cb0b0be85009154 Mon Sep 17 00:00:00 2001 From: Alexander Stein Date: Wed, 24 May 2023 08:55:34 +0200 Subject: [PATCH] libcamera: Simplify pipeline configuration Default to 'auto' which enables all target architecture pipelines (+UVC). IPAs are also automatically enabled if the corresponding required pipeline is enabled as well. Signed-off-by: Alexander Stein Signed-off-by: Khem Raj --- .../recipes-multimedia/libcamera/libcamera_0.0.5.bb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/meta-multimedia/recipes-multimedia/libcamera/libcamera_0.0.5.bb b/meta-multimedia/recipes-multimedia/libcamera/libcamera_0.0.5.bb index 47da0ec615..6ad376f295 100644 --- a/meta-multimedia/recipes-multimedia/libcamera/libcamera_0.0.5.bb +++ b/meta-multimedia/recipes-multimedia/libcamera/libcamera_0.0.5.bb @@ -26,12 +26,10 @@ PACKAGES =+ "${PN}-gst" PACKAGECONFIG ??= "" PACKAGECONFIG[gst] = "-Dgstreamer=enabled,-Dgstreamer=disabled,gstreamer1.0 gstreamer1.0-plugins-base" -LIBCAMERA_PIPELINES ??= "uvcvideo,simple,vimc" -LIBCAMERA_IPAS ??= "vimc" +LIBCAMERA_PIPELINES ??= "auto" EXTRA_OEMESON = " \ -Dpipelines=${LIBCAMERA_PIPELINES} \ - -Dipas=${LIBCAMERA_IPAS} \ -Dv4l2=true \ -Dcam=enabled \ -Dlc-compliance=disabled \