-
Notifications
You must be signed in to change notification settings - Fork 211
Expand file tree
/
Copy pathConfig.sensor.in
More file actions
61 lines (51 loc) · 1.57 KB
/
Config.sensor.in
File metadata and controls
61 lines (51 loc) · 1.57 KB
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
menu "Image Sensor(s)"
depends on !BR2_SOC_FAMILY_INGENIC_A1
config BR2_THINGINO_IMAGE_SENSOR_QTY
int "Image Sensor Qty"
default 1
help
Number of image sensors in the system
config BR2_SENSOR_1_NAME
string "Image Sensor Model"
default "none"
depends on BR2_THINGINO_IMAGE_SENSOR_QTY >= 1
help
Select the sensor model for your device
config BR2_SENSOR_2_NAME
string "Image Sensor Model [Sensor 2]"
default "none"
depends on BR2_THINGINO_IMAGE_SENSOR_QTY >= 2
help
Select the sensor model for your device
config BR2_SENSOR_3_NAME
string "Image Sensor Model [Sensor 3]"
default "none"
depends on BR2_THINGINO_IMAGE_SENSOR_QTY >= 3
help
Select the sensor model for your device
config BR2_SENSOR_4_NAME
string "Image Sensor Model [Sensor 4]"
default "none"
depends on BR2_THINGINO_IMAGE_SENSOR_QTY >= 4
help
Select the sensor model for your device
config BR2_SENSOR_1_PARAMS
string "Image sensor parameters [Sensor 1]"
help
Set additional parameters passed to image sensor kernel module
config BR2_SENSOR_2_PARAMS
depends on BR2_THINGINO_IMAGE_SENSOR_QTY >= 2
string "Image sensor parameters [Sensor 2]"
help
Set additional parameters passed to image sensor kernel module
config BR2_SENSOR_3_PARAMS
depends on BR2_THINGINO_IMAGE_SENSOR_QTY >= 3
string "Image sensor parameters [Sensor 3]"
help
Set additional parameters passed to image sensor kernel module
config BR2_SENSOR_4_PARAMS
depends on BR2_THINGINO_IMAGE_SENSOR_QTY >= 4
string "Image sensor parameters [Sensor 4]"
help
Set additional parameters passed to image sensor kernel module
endmenu