Kconfig 806 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 DFU_NAND
  16. bool "NAND back end for DFU"
  17. help
  18. This option enables using DFU to read and write to NAND based
  19. storage.
  20. config DFU_RAM
  21. bool "RAM back end for DFU"
  22. help
  23. This option enables using DFU to read and write RAM on the target.
  24. config DFU_SF
  25. bool "SPI flash back end for DFU"
  26. help
  27. This option enables using DFU to read and write to SPI flash based
  28. storage.
  29. endif
  30. endmenu