[Buildroot] [PATCH 1/9] package/libcamera: remove dependency on boost for rpi/vc4 pipeline
Quentin Schulz
foss+buildroot at 0leil.net
Fri Apr 4 16:47:32 UTC 2025
From: Quentin Schulz <quentin.schulz at cherry.de>
Commit c1597f989654 ("ipa: raspberrypi: Use YamlParser to replace
dependency on boost"), part of the v0.0.1 release, removed the
dependency on boost, so let's remove it from the pipeline option and
dependency for Buildroot.
Signed-off-by: Quentin Schulz <quentin.schulz at cherry.de>
---
package/libcamera/Config.in | 2 --
package/libcamera/libcamera.mk | 5 +----
2 files changed, 1 insertion(+), 6 deletions(-)
diff --git a/package/libcamera/Config.in b/package/libcamera/Config.in
index 1df97edc41174a22c76a688b07390f5446eb598c..086a5b3758b9dbddf01170d39383fb0dacbc9186 100644
--- a/package/libcamera/Config.in
+++ b/package/libcamera/Config.in
@@ -63,8 +63,6 @@ config BR2_PACKAGE_LIBCAMERA_PIPELINE_RKISP1
config BR2_PACKAGE_LIBCAMERA_PIPELINE_RPI_VC4
bool "rpi/vc4 pipeline"
depends on BR2_arm || BR2_aarch64
- depends on BR2_USE_WCHAR # boost (already enforced for gnutls)
- select BR2_PACKAGE_BOOST
select BR2_PACKAGE_LIBCAMERA_HAS_PIPELINE
help
Pipeline for Raspberry Pi devices.
diff --git a/package/libcamera/libcamera.mk b/package/libcamera/libcamera.mk
index b3132dc01658ed2fe9e5f780951f3152596dcfcf..0f52f08e39ab885a4989d337aec13fc3f88d654f 100644
--- a/package/libcamera/libcamera.mk
+++ b/package/libcamera/libcamera.mk
@@ -61,10 +61,7 @@ endif
LIBCAMERA_PIPELINES-$(BR2_PACKAGE_LIBCAMERA_PIPELINE_IMX8_ISI) += imx8-isi
LIBCAMERA_PIPELINES-$(BR2_PACKAGE_LIBCAMERA_PIPELINE_IPU3) += ipu3
LIBCAMERA_PIPELINES-$(BR2_PACKAGE_LIBCAMERA_PIPELINE_RKISP1) += rkisp1
-ifeq ($(BR2_PACKAGE_LIBCAMERA_PIPELINE_RPI_VC4),y)
-LIBCAMERA_PIPELINES-y += rpi/vc4
-LIBCAMERA_DEPENDENCIES += boost
-endif
+LIBCAMERA_PIPELINES-$(BR2_PACKAGE_LIBCAMERA_PIPELINE_RPI_VC4) += rpi/vc4
LIBCAMERA_PIPELINES-$(BR2_PACKAGE_LIBCAMERA_PIPELINE_SIMPLE) += simple
LIBCAMERA_PIPELINES-$(BR2_PACKAGE_LIBCAMERA_PIPELINE_UVCVIDEO) += uvcvideo
LIBCAMERA_PIPELINES-$(BR2_PACKAGE_LIBCAMERA_PIPELINE_VIMC) += vimc
--
2.49.0
More information about the buildroot
mailing list