-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
executable file
·47 lines (38 loc) · 1.22 KB
/
Kconfig
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
menu "configure linux-ubuntu-6.2.0_64Bit"
config OPERATING_SYSTEM
int "OPERATING_SYSTEM --- mandatory for board"
default 100
---help---
100 /* LINUX */
98 /* RTOS */
3 /* Non-OS */
menuconfig ENABLE_WIFI
bool "ENABLE_WIFI --- use wifi to connect"
default n
if (ENABLE_WIFI)
config WLAN_DEV
string "wifi main devices name"
default "wlan0"
config WLAN_AP
string "wifi concurrent device name"
default "wlan1"
config NL80211
bool "wifi is NL80211"
default n
config WIFI_DB_PATH
string "wifi db ptah"
default "./tuya_db_files"
endif
menuconfig ENABLE_WIRED
bool "ENABLE_WIRED --- use wired to connect"
default y
config ENABLE_BLUETOOTH
bool "ENABLE_BLUETOOTH --- use bluetooth to connect"
default n
config LITTLE_END
int "LITTLE_END --- mandatory for board"
default 1
---help---
0 /* big endian */
1 /* little endian */
endmenu