|
@@ -1,5 +1,12 @@
|
|
|
+config BR2_PACKAGE_LIBCAMERA_ARCH_SUPPORTS
|
|
|
+ bool
|
|
|
+ default y
|
|
|
+ # Invalid packing size of ControlValue struct on m68k
|
|
|
+ depends on BR2_m68k
|
|
|
+
|
|
|
menuconfig BR2_PACKAGE_LIBCAMERA
|
|
|
bool "libcamera"
|
|
|
+ depends on BR2_PACKAGE_LIBCAMERA_ARCH_SUPPORTS
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++14
|
|
@@ -64,5 +71,6 @@ config BR2_PACKAGE_LIBCAMERA_PIPELINE_VIMC
|
|
|
endif # BR2_PACKAGE_LIBCAMERA
|
|
|
|
|
|
comment "libcamera needs a toolchain w/ C++, threads, wchar, dynamic library, gcc >= 5"
|
|
|
+ depends on BR2_PACKAGE_LIBCAMERA_ARCH_SUPPORTS
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_5 || BR2_STATIC_LIBS || !BR2_USE_WCHAR
|