Lukasz Majewski | 585a696 | 2015-08-24 00:21:49 +0200 | [diff] [blame] | 1 | menu "DFU support" |
| 2 | |
Tom Rini | 6828e60 | 2016-09-19 13:31:30 -0400 | [diff] [blame] | 3 | config USB_FUNCTION_DFU |
| 4 | bool |
| 5 | |
| 6 | if CMD_DFU |
Lukasz Majewski | 585a696 | 2015-08-24 00:21:49 +0200 | [diff] [blame] | 7 | config DFU_TFTP |
| 8 | bool "DFU via TFTP" |
| 9 | help |
Robert P. J. Day | 1cc0a9f | 2016-05-04 04:47:31 -0400 | [diff] [blame] | 10 | This option allows performing update of DFU-managed medium with data |
| 11 | sent via TFTP boot. |
Lukasz Majewski | 585a696 | 2015-08-24 00:21:49 +0200 | [diff] [blame] | 12 | |
Robert P. J. Day | 1cc0a9f | 2016-05-04 04:47:31 -0400 | [diff] [blame] | 13 | Detailed description of this feature can be found at ./doc/README.dfutftp |
Tom Rini | 6828e60 | 2016-09-19 13:31:30 -0400 | [diff] [blame] | 14 | |
| 15 | config 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 | |
| 20 | config 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 | |
| 26 | config 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 | |
| 31 | config 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 | |
| 37 | endif |
Lukasz Majewski | 585a696 | 2015-08-24 00:21:49 +0200 | [diff] [blame] | 38 | endmenu |