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 |
Maxime Ripard | 70c56c1 | 2018-01-16 09:44:13 +0100 | [diff] [blame^] | 5 | select HASH |
Tom Rini | 6828e60 | 2016-09-19 13:31:30 -0400 | [diff] [blame] | 6 | |
| 7 | if CMD_DFU |
Lukasz Majewski | 585a696 | 2015-08-24 00:21:49 +0200 | [diff] [blame] | 8 | config DFU_TFTP |
| 9 | bool "DFU via TFTP" |
| 10 | help |
Robert P. J. Day | 1cc0a9f | 2016-05-04 04:47:31 -0400 | [diff] [blame] | 11 | This option allows performing update of DFU-managed medium with data |
| 12 | sent via TFTP boot. |
Lukasz Majewski | 585a696 | 2015-08-24 00:21:49 +0200 | [diff] [blame] | 13 | |
Robert P. J. Day | 1cc0a9f | 2016-05-04 04:47:31 -0400 | [diff] [blame] | 14 | Detailed description of this feature can be found at ./doc/README.dfutftp |
Tom Rini | 6828e60 | 2016-09-19 13:31:30 -0400 | [diff] [blame] | 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 |
Lukasz Majewski | 585a696 | 2015-08-24 00:21:49 +0200 | [diff] [blame] | 39 | endmenu |