hc
2024-11-01 a01b5c9f91adaee088a817861603a5dbe14775c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
config BR2_PACKAGE_LIBCAMERA_ARCH_SUPPORTS
   bool
   default y
   # Invalid packing size of ControlValue struct on m68k
   depends on !BR2_m68k
   depends on !BR2_TOOLCHAIN_HAS_BINUTILS_BUG_27597
 
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_7 # C++17
   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_V4L2
   bool "libcamera v4l2 compatibility layer"
   help
     libcamera v4l2 compatibility layer
 
config BR2_PACKAGE_LIBCAMERA_HAS_PIPELINE
   bool
 
config BR2_PACKAGE_LIBCAMERA_PIPELINE_IPU3
   bool "ipu3 pipeline"
   depends on BR2_i386 || BR2_x86_64
   select BR2_PACKAGE_LIBCAMERA_HAS_PIPELINE
   help
     Pipeline for Intel IPU3.
 
config BR2_PACKAGE_LIBCAMERA_PIPELINE_RASPBERRYPI
   bool "raspberrypi 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.
 
config BR2_PACKAGE_LIBCAMERA_PIPELINE_RKISP1
   bool "rkisp1 pipeline"
   depends on BR2_arm || BR2_aarch64
   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.
 
config BR2_PACKAGE_LIBCAMERA_COMPLIANCE
   bool "lc-compliance test application"
   depends on BR2_USE_WCHAR # gtest
   depends on BR2_TOOLCHAIN_HAS_THREADS # gtest
   depends on BR2_INSTALL_LIBSTDCPP # gtest
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # gtest
   depends on BR2_USE_MMU # gtest
   select BR2_PACKAGE_GTEST
   select BR2_PACKAGE_LIBEVENT
   help
     lc-compliance test application
 
comment "lc-compliance test application needs a toolchain w/ C++, wchar, threads, gcc >= 4.9"
   depends on BR2_USE_MMU
   depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
       !BR2_INSTALL_LIBSTDCPP || \
       !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
 
endif # BR2_PACKAGE_LIBCAMERA
 
comment "libcamera needs a toolchain w/ C++, threads, wchar, dynamic library, gcc >= 7"
   depends on BR2_PACKAGE_LIBCAMERA_ARCH_SUPPORTS
   depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
       !BR2_TOOLCHAIN_GCC_AT_LEAST_7 || BR2_STATIC_LIBS || !BR2_USE_WCHAR