lin
2025-04-14 e0c033f30287744d392a8d700693b1c0b78afc7c
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
menuconfig SUNXI_USB
   bool "Sunxi usb divice support"
 
if SUNXI_USB
 
config SUNXI_EFEX
   bool "Support sunxi efex devices"
   select SUNXI_FLASH
   help
     Enable support for sunxi efex devices. 
 
config SUNXI_BURN
   bool "Support sunxi uburn devices"
   select SUNXI_FLASH
   help
     ENable support for sunxi uburn devices.
 
menuconfig SUNXI_FASTBOOT
   bool "Support sunxi fastboot devices"
   select SUNXI_FLASH
   imply  SUNXI_FASTBOOT_MBR
   imply  SUNXI_FASTBOOT_BOOT0
   imply  SUNXI_FASTBOOT_UBOOT
   help
     ENable support for sunxi fastboot devices.
if SUNXI_FASTBOOT
 
config SUNXI_FASTBOOT_MBR
   bool "Burn MBR via fastboot"
   help
       Support use fastboot to burn MBR
 
config SUNXI_FASTBOOT_BOOT0
   bool "Burn boot0/toc0 via fastboot"
   help
       Support use fastboot to burn boot0/toc0
 
config SUNXI_FASTBOOT_UBOOT
   bool "Burn uboot0/toc1 via fastboot"
   help
       Support use fastboot to burn uboot/toc1
endif
 
config SUNXI_USB_DETECT
   bool "Support sunxi usb detect"
   help
       Enable support for sunxi usb detect.
 
endif