Kconfig 1.3 KB

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