summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-multimedia/recipes-multimedia/libcamera/libcamera_0.6.0.bb8
1 files changed, 6 insertions, 2 deletions
diff --git a/meta-multimedia/recipes-multimedia/libcamera/libcamera_0.6.0.bb b/meta-multimedia/recipes-multimedia/libcamera/libcamera_0.6.0.bb
index 4dce26a5d0..1f9e21e45b 100644
--- a/meta-multimedia/recipes-multimedia/libcamera/libcamera_0.6.0.bb
+++ b/meta-multimedia/recipes-multimedia/libcamera/libcamera_0.6.0.bb
@@ -28,12 +28,16 @@ PACKAGECONFIG[dng] = ",,tiff"
28PACKAGECONFIG[gst] = "-Dgstreamer=enabled,-Dgstreamer=disabled,gstreamer1.0 gstreamer1.0-plugins-base" 28PACKAGECONFIG[gst] = "-Dgstreamer=enabled,-Dgstreamer=disabled,gstreamer1.0 gstreamer1.0-plugins-base"
29PACKAGECONFIG[pycamera] = "-Dpycamera=enabled,-Dpycamera=disabled,python3 python3-pybind11" 29PACKAGECONFIG[pycamera] = "-Dpycamera=enabled,-Dpycamera=disabled,python3 python3-pybind11"
30PACKAGECONFIG[raspberrypi] = ",,libpisp" 30PACKAGECONFIG[raspberrypi] = ",,libpisp"
31PACKAGECONFIG[vimc] = ",,"
32PACKAGECONFIG[virtual] = ",,libyuv libjpeg-turbo"
31 33
34ARM_PIPELINES = "imx8-isi,mali-c55,simple,uvcvideo"
32# Raspberry Pi requires the meta-raspberrypi layer 35# Raspberry Pi requires the meta-raspberrypi layer
33# These values are coming from the project's meson.build file, 36# These values are coming from the project's meson.build file,
34# which lists the supported values by arch. 37# which lists the supported values by arch.
35ARM_PIPELINES = "${@bb.utils.contains('PACKAGECONFIG', 'raspberrypi', 'rpi/pisp,rpi/vc4,', '', d)}" 38ARM_PIPELINES .= "${@bb.utils.contains('PACKAGECONFIG', 'raspberrypi', ',rpi/pisp,rpi/vc4', '', d)}"
36ARM_PIPELINES .= "imx8-isi,mali-c55,simple,uvcvideo" 39ARM_PIPELINES .= "${@bb.utils.contains('PACKAGECONFIG', 'vimc', ',vimc', '', d)}"
40ARM_PIPELINES .= "${@bb.utils.contains('PACKAGECONFIG', 'virtual', ',virtual', '', d)}"
37 41
38LIBCAMERA_PIPELINES ??= "auto" 42LIBCAMERA_PIPELINES ??= "auto"
39LIBCAMERA_PIPELINES:arm ??= "${ARM_PIPELINES}" 43LIBCAMERA_PIPELINES:arm ??= "${ARM_PIPELINES}"