]> git.ipfire.org Git - people/ms/u-boot.git/blob - drivers/dfu/Kconfig
Merge branch 'rmobile-mx' of git://git.denx.de/u-boot-sh
[people/ms/u-boot.git] / drivers / dfu / Kconfig
1 menu "DFU support"
2
3 config USB_FUNCTION_DFU
4 bool
5 select HASH
6
7 if CMD_DFU
8 config DFU_TFTP
9 bool "DFU via TFTP"
10 help
11 This option allows performing update of DFU-managed medium with data
12 sent via TFTP boot.
13
14 Detailed description of this feature can be found at ./doc/README.dfutftp
15
16 config DFU_MMC
17 bool "MMC back end for DFU"
18 help
19 This option enables using DFU to read and write to MMC based storage.
20
21 config DFU_NAND
22 bool "NAND back end for DFU"
23 help
24 This option enables using DFU to read and write to NAND based
25 storage.
26
27 config DFU_RAM
28 bool "RAM back end for DFU"
29 help
30 This option enables using DFU to read and write RAM on the target.
31
32 config DFU_SF
33 bool "SPI flash back end for DFU"
34 help
35 This option enables using DFU to read and write to SPI flash based
36 storage.
37
38 endif
39 endmenu