blob: 56a98f5273cea7103e30dcce6f8ceef56055a575 [file] [log] [blame]
Lukasz Majewski585a6962015-08-24 00:21:49 +02001menu "DFU support"
2
Tom Rini6828e602016-09-19 13:31:30 -04003config USB_FUNCTION_DFU
4 bool
5
6if CMD_DFU
Lukasz Majewski585a6962015-08-24 00:21:49 +02007config DFU_TFTP
8 bool "DFU via TFTP"
9 help
Robert P. J. Day1cc0a9f2016-05-04 04:47:31 -040010 This option allows performing update of DFU-managed medium with data
11 sent via TFTP boot.
Lukasz Majewski585a6962015-08-24 00:21:49 +020012
Robert P. J. Day1cc0a9f2016-05-04 04:47:31 -040013 Detailed description of this feature can be found at ./doc/README.dfutftp
Tom Rini6828e602016-09-19 13:31:30 -040014
15config DFU_MMC
16 bool "MMC back end for DFU"
17 help
18 This option enables using DFU to read and write to MMC based storage.
19
20config DFU_NAND
21 bool "NAND back end for DFU"
22 help
23 This option enables using DFU to read and write to NAND based
24 storage.
25
26config DFU_RAM
27 bool "RAM back end for DFU"
28 help
29 This option enables using DFU to read and write RAM on the target.
30
31config DFU_SF
32 bool "SPI flash back end for DFU"
33 help
34 This option enables using DFU to read and write to SPI flash based
35 storage.
36
37endif
Lukasz Majewski585a6962015-08-24 00:21:49 +020038endmenu