hc
2023-11-06 e3e12f52b214121840b44c91de5b3e5af5d3eb84
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
menuconfig BR2_PACKAGE_THUNDERBOOT
   bool "rockchip thunderboot"
   help
     Rockchip tb(thunder boot) configuration.
 
if BR2_PACKAGE_THUNDERBOOT
config BR2_PACKAGE_THUNDERBOOT_BATIPC_LAUNCH
   bool "lunch for battery ipc"
   help
     The default usage on battery ipc is special, that will power off
     automatically if the cloud connection was not establish.
 
#config BR2_PACKAGE_THUNDERBOOT_CAMERA_FPS
#    int "camera fps setting"
#    depends on BR2_PACKAGE_THUNDERBOOT_BATIPC_LAUNCH
#    default 25
#    help
#      Camera fps setting, default is 25fps.
 
config BR2_THUNDERBOOT_INSTALL_MODULES
   string "dirver modules"
   help
     Kernel driver modules to be installed.
 
config BR2_THUNDERBOOT_ETH
   bool "ethernet configuration"
   help
     Ethernet connection
 
config BR2_THUNDERBOOT_EMMC
   bool "emmc configuration"
   help
     EMMC enable
 
config BR2_THUNDERBOOT_SOUND
   bool "sound configuration"
   help
     Sound enable
 
config BR2_THUNDERBOOT_SIMPLIFY_USB
   bool "simplify usb configuration"
   help
     Kernel driver modules to be installed.
 
config BR2_PACKAGE_THUNDERBOOT_USE_EUDEV
   bool "enable udev for usb-otg/sdcard/block-byname, etc..."
   help
     enable udev for usb-otg/sdcard/block-byname, etc...
 
if BR2_THUNDERBOOT_SIMPLIFY_USB
 
config BR2_THUNDERBOOT_USB_ADBD
   bool "rockchip thunderboot USB ADBD"
   select BR2_PACKAGE_ANDROID_TOOLS
   help
     Use simplify ADB configuration.
 
config BR2_THUNDERBOOT_USB_MTP
   bool "rockchip thunderboot USB MTP"
   select BR2_PACKAGE_MTP
   select BR2_PACKAGE_THUNDERBOOT_USE_EUDEV
   help
     Use simplify MTP configuration.
 
config BR2_THUNDERBOOT_USB_RNDIS
   bool "rockchip thunderboot USB RNDIS"
   help
     Use simplify RNDIS configuration.
     Default net device is usb0.
     Default net address is 190.168.1.100
endif
endif