-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathConfig.in
More file actions
82 lines (71 loc) · 2.99 KB
/
Config.in
File metadata and controls
82 lines (71 loc) · 2.99 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
source "$BR2_EXTERNAL_OPENIPC_SBC_GS_PATH/package/mali-driver-custom/Config.in"
source "$BR2_EXTERNAL_OPENIPC_SBC_GS_PATH/package/rkdeveloptool/Config.in.host"
source "$BR2_EXTERNAL_OPENIPC_SBC_GS_PATH/package/aic8800/Config.in"
source "$BR2_EXTERNAL_OPENIPC_SBC_GS_PATH/package/rtl88x2cu/Config.in"
source "$BR2_EXTERNAL_OPENIPC_SBC_GS_PATH/package/rtl88x2eu/Config.in"
source "$BR2_EXTERNAL_OPENIPC_SBC_GS_PATH/package/rtl8812au/Config.in"
source "$BR2_EXTERNAL_OPENIPC_SBC_GS_PATH/package/wifibroadcast-ng/Config.in"
source "$BR2_EXTERNAL_OPENIPC_SBC_GS_PATH/package/wfb-server/Config.in"
source "$BR2_EXTERNAL_OPENIPC_SBC_GS_PATH/package/librga/Config.in"
source "$BR2_EXTERNAL_OPENIPC_SBC_GS_PATH/package/rockchip-mpp/Config.in"
source "$BR2_EXTERNAL_OPENIPC_SBC_GS_PATH/package/pixelpilot/Config.in"
source "$BR2_EXTERNAL_OPENIPC_SBC_GS_PATH/package/adaptive-link/Config.in"
source "$BR2_EXTERNAL_OPENIPC_SBC_GS_PATH/package/yaml-cli/Config.in"
source "$BR2_EXTERNAL_OPENIPC_SBC_GS_PATH/package/msposd/Config.in"
source "$BR2_EXTERNAL_OPENIPC_SBC_GS_PATH/package/yq/Config.in"
source "$BR2_EXTERNAL_OPENIPC_SBC_GS_PATH/package/drm_info/Config.in"
source "$BR2_EXTERNAL_OPENIPC_SBC_GS_PATH/package/dvrui/Config.in"
choice
prompt "GPIO configuration method"
help
Select how to configure the gadget mode GPIO detection.
config BR2_BOARD_GPIO_CONFIG_CHIP_LINE
bool "Use GPIO chip and line"
help
Specify GPIO using chip name and line number.
config BR2_BOARD_GPIO_CONFIG_PIN_NAME
bool "Use GPIO pin name"
help
Specify GPIO using pin name.
endchoice
config BR2_FACTORY_RESET_GPIO_CHIP
string "Factory reset GPIO chip"
default ""
depends on BR2_BOARD_GPIO_CONFIG_CHIP_LINE
help
When detected high during boot (initrd phase) issue a factory reset.
config BR2_FACTORY_RESET_GPIO_LINE
string "Factory reset GPIO line"
default ""
depends on BR2_BOARD_GPIO_CONFIG_CHIP_LINE
help
When detected high during boot (initrd phase) issue a factory reset.
config BR2_FACTORY_RESET_GPIO_PIN_NAME
string "Factory reset GPIO pin name"
default ""
depends on BR2_BOARD_GPIO_CONFIG_PIN_NAME
help
When detected high during boot (initrd phase) issue a factory reset.
config BR2_GADGET_MODE_GPIO_CHIP
string "Gadget mode GPIO chip"
default ""
depends on BR2_BOARD_GPIO_CONFIG_CHIP_LINE
help
Starts gadget mode when detected high during boot (initrd phase).
config BR2_GADGET_MODE_GPIO_LINE
string "Gadget mode GPIO line"
default ""
depends on BR2_BOARD_GPIO_CONFIG_CHIP_LINE
help
Starts gadget mode when detected high during boot (initrd phase).
config BR2_GADGET_MODE_GPIO_PIN_NAME
string "Gadget mode GPIO pin name"
default ""
depends on BR2_BOARD_GPIO_CONFIG_PIN_NAME
help
Starts gadget mode when detected high during boot (initrd phase).
config BR2_BOARD_HOST
string "Host/IP of your vrx in your local network"
default 192.168.1.199
help
Used during ssh-flash target to flash the image.