hc
2024-03-22 ac5f19e89dcbd5c7428fcc78a0d407c887564466
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
config BR2_PACKAGE_RKSCRIPT
   bool "rockchip script"
   depends on BR2_PACKAGE_HAS_UDEV
   help
     Rockchip helper scripts.
 
if BR2_PACKAGE_RKSCRIPT
 
config BR2_PACKAGE_RKSCRIPT_MOUNTALL
   bool "rkscript mountall"
   default y
   help
     Install S21mountall.sh
 
config BR2_PACKAGE_RKSCRIPT_EXTRA_USB_CONFIG
   string "extra usb config"
   help
     Extra usb configs.
 
config BR2_PACKAGE_RKSCRIPT_ADBD
   bool "adbd"
   default y if BR2_PACKAGE_ANDROID_TOOLS_ADBD
   help
     Android adbd.
 
config BR2_PACKAGE_RKSCRIPT_MTP
   bool "mtp"
   default y if BR2_PACKAGE_MTP
   help
     Media Transfer Protocal (MTP).
 
config BR2_PACKAGE_RKSCRIPT_ACM
   bool "acm"
   help
     USB ACM.
 
config BR2_PACKAGE_RKSCRIPT_NTB
   bool "ntb"
   help
     Rockchip NTB.
 
config BR2_PACKAGE_RKSCRIPT_UMS
   bool "ums"
   help
     USB mass storage (UMS).
 
if BR2_PACKAGE_RKSCRIPT_UMS
 
config BR2_PACKAGE_RKSCRIPT_UMS_PATH
   string "ums path"
   default "/userdata/ums_shared.img"
   help
     Block device or image file to share through UMS.
 
config BR2_PACKAGE_RKSCRIPT_UMS_SIZE
   string "ums size"
   default "8"
   help
     UMS's size (MB).
 
config BR2_PACKAGE_RKSCRIPT_UMS_FSTYPE
   string "ums fstype"
   default "fat"
   help
     UMS's filesystem type.
 
config BR2_PACKAGE_RKSCRIPT_UMS_RO
   bool "ums ro"
   default n
   help
     UMS is read-only.
 
config BR2_PACKAGE_RKSCRIPT_UMS_AUTO_MOUNT
   bool "ums auto mount"
   help
     Mount when USB disconnected, umount when connected.
 
     Warning:
     Umounting UMS may failed if it is still in use.
 
endif
 
config BR2_PACKAGE_RKSCRIPT_DEFAULT_PCM
   string "default PCM"
   help
     Alsa's default PCM
 
endif