Kconfig 972 B

12345678910111213141516171819202122232425262728293031323334
  1. config CMD_STM32PROG
  2. bool "command stm32prog for STM32CudeProgrammer"
  3. select DFU
  4. select DFU_RAM
  5. select DFU_VIRT
  6. select PARTITION_TYPE_GUID
  7. imply CMD_GPT if MMC
  8. imply CMD_MTD if MTD
  9. imply DFU_MMC if MMC
  10. imply DFU_MTD if MTD
  11. help
  12. activate a specific command stm32prog for STM32MP soc family
  13. witch update the device with the tools STM32CubeProgrammer
  14. NB: access to not volatile memory (NOR/NAND/SD/eMMC) is based
  15. on U-Boot DFU framework
  16. config CMD_STM32PROG_USB
  17. bool "support stm32prog over USB"
  18. depends on CMD_STM32PROG
  19. default y
  20. help
  21. activate the command "stm32prog usb" for STM32MP soc family
  22. witch update the device with the tools STM32CubeProgrammer,
  23. using USB with DFU protocol
  24. config CMD_STM32PROG_SERIAL
  25. bool "support stm32prog over UART"
  26. depends on CMD_STM32PROG
  27. default y
  28. help
  29. activate the command "stm32prog serial" for STM32MP soc family
  30. with the tools STM32CubeProgrammer using U-Boot serial device
  31. and UART protocol.