Kconfig 940 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. menu "DFU support"
  2. config USB_FUNCTION_DFU
  3. bool
  4. if CMD_DFU
  5. config DFU_TFTP
  6. bool "DFU via TFTP"
  7. help
  8. This option allows performing update of DFU-managed medium with data
  9. sent via TFTP boot.
  10. Detailed description of this feature can be found at ./doc/README.dfutftp
  11. config DFU_MMC
  12. bool "MMC back end for DFU"
  13. help
  14. This option enables using DFU to read and write to MMC based storage.
  15. config SPL_DFU_MMC
  16. bool "MMC back end for SPL-DFU"
  17. help
  18. This option enables DFU for SPL to read and write to MMC based storage.
  19. config DFU_NAND
  20. bool "NAND back end for DFU"
  21. help
  22. This option enables using DFU to read and write to NAND based
  23. storage.
  24. config DFU_RAM
  25. bool "RAM back end for DFU"
  26. help
  27. This option enables using DFU to read and write RAM on the target.
  28. config DFU_SF
  29. bool "SPI flash back end for DFU"
  30. help
  31. This option enables using DFU to read and write to SPI flash based
  32. storage.
  33. endif
  34. endmenu