f63d6b5459
- add host dependencies: openssl, pkgconf, python3-pyyaml - add dependencies: gnutls - changed from mandatory to optional dependency: udev - add dedicated pipeline configure options - add optional dependencies: boost, gstreamer1/gst1-plugins-base, qt5base, tiff - update license info (Apache-2.0 omitted - applies only for android code) Signed-off-by: Peter Seiderer <ps.report@gmx.net> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> [yann.morin.1998@free.fr: - simplify the qt5-widgets and qt5tools-linguist conditions ] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
64 lines
1.8 KiB
Plaintext
64 lines
1.8 KiB
Plaintext
menuconfig BR2_PACKAGE_LIBCAMERA
|
|
bool "libcamera"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++14
|
|
depends on !BR2_STATIC_LIBS # gnutls
|
|
depends on BR2_USE_WCHAR # gnutls
|
|
select BR2_PACKAGE_GNUTLS
|
|
select BR2_PACKAGE_LIBCAMERA_PIPELINE_UVCVIDEO if !BR2_PACKAGE_LIBCAMERA_HAS_PIPELINE
|
|
help
|
|
libcamera provides a software stack to support
|
|
complex devices that need heavy hardware image
|
|
processing operations.
|
|
|
|
http://www.libcamera.org/
|
|
|
|
if BR2_PACKAGE_LIBCAMERA
|
|
|
|
config BR2_PACKAGE_LIBCAMERA_HAS_PIPELINE
|
|
bool
|
|
|
|
config BR2_PACKAGE_LIBCAMERA_PIPELINE_IPU3
|
|
bool "ipu3 pipeline"
|
|
select BR2_PACKAGE_LIBCAMERA_HAS_PIPELINE
|
|
help
|
|
Pipeline for Intel IPU3.
|
|
|
|
config BR2_PACKAGE_LIBCAMERA_PIPELINE_RASPBERRYPI
|
|
bool "raspberrypi pipeline"
|
|
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.
|
|
|
|
config BR2_PACKAGE_LIBCAMERA_PIPELINE_RKISP1
|
|
bool "rkisp1 pipeline"
|
|
select BR2_PACKAGE_LIBCAMERA_HAS_PIPELINE
|
|
help
|
|
Pipeline for Rockchip ISP1.
|
|
|
|
config BR2_PACKAGE_LIBCAMERA_PIPELINE_SIMPLE
|
|
bool "simple pipeline"
|
|
select BR2_PACKAGE_LIBCAMERA_HAS_PIPELINE
|
|
help
|
|
Pipeline for simple pipelines.
|
|
|
|
config BR2_PACKAGE_LIBCAMERA_PIPELINE_UVCVIDEO
|
|
bool "uvcvideo pipeline"
|
|
help
|
|
Pipeline for uvcvideo devices.
|
|
|
|
config BR2_PACKAGE_LIBCAMERA_PIPELINE_VIMC
|
|
bool "vimc pipeline"
|
|
select BR2_PACKAGE_LIBCAMERA_HAS_PIPELINE
|
|
help
|
|
Pipeline for the vimc device.
|
|
|
|
endif # BR2_PACKAGE_LIBCAMERA
|
|
|
|
comment "libcamera needs a toolchain w/ C++, threads, wchar, dynamic library, gcc >= 5"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_5 || BR2_STATIC_LIBS || !BR2_USE_WCHAR
|