mirror of
https://github.com/home-assistant/operating-system.git
synced 2026-03-01 14:16:30 +00:00
* Update buildroot 2020.02.01 Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * Fix LN * Fix wpa Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * Fix lint Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * fix-network Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * Fix script Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>
18 lines
618 B
Plaintext
18 lines
618 B
Plaintext
config BR2_PACKAGE_LIBCAMERA
|
|
bool "libcamera"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
# C++11 + https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54316
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5
|
|
depends on BR2_PACKAGE_HAS_UDEV
|
|
help
|
|
libcamera provides a software stack to support
|
|
complex devices that need heavy hardware image
|
|
processing operations.
|
|
|
|
http://www.libcamera.org/
|
|
|
|
comment "libcamera needs udev and a toolchain w/ C++, threads, gcc >= 5"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_5 || !BR2_PACKAGE_HAS_UDEV
|