Kconfig 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. menu "MVEBU commands"
  2. depends on ARCH_MVEBU
  3. config CMD_MVEBU_BUBT
  4. bool "bubt"
  5. default n
  6. select SHA256 if ARMADA_3700
  7. help
  8. bubt - Burn a u-boot image to flash
  9. For details about bubt command please see the documentation
  10. in doc/mvebu/cmd/bubt.txt
  11. choice
  12. prompt "Flash for image"
  13. default MVEBU_SPI_BOOT
  14. config MVEBU_NAND_BOOT
  15. bool "NAND flash boot"
  16. depends on NAND_PXA3XX
  17. help
  18. Enable boot from NAND flash.
  19. Allow usage of NAND flash as a target for "bubt" command
  20. For details about bubt command please see the documentation
  21. in doc/mvebu/cmd/bubt.txt
  22. config MVEBU_SPI_BOOT
  23. bool "SPI flash boot"
  24. depends on SPI_FLASH
  25. help
  26. Enable boot from SPI flash.
  27. Allow usage of SPI flash as a target for "bubt" command
  28. For details about bubt command please see the documentation
  29. in doc/mvebu/cmd/bubt.txt
  30. config MVEBU_MMC_BOOT
  31. bool "eMMC flash boot"
  32. depends on MVEBU_MMC || MMC_SDHCI_XENON
  33. help
  34. Enable boot from eMMC boot partition
  35. Allow usage of eMMC/SD device as a target for "bubt" command
  36. For details about bubt command please see the documentation
  37. in doc/mvebu/cmd/bubt.txt
  38. endchoice
  39. config MVEBU_UBOOT_DFLT_NAME
  40. string "Default image name for bubt command"
  41. default "flash-image.bin"
  42. help
  43. This option should contain a default file name to be used with
  44. MVEBU "bubt" command if the source file name is omitted
  45. config CMD_MVEBU_COMPHY_RX_TRAINING
  46. bool "mvebu_comphy_rx_training"
  47. depends on ARMADA_8K
  48. help
  49. Perform COMPHY RX training sequence
  50. endmenu