xref: /OK3568_Linux_fs/u-boot/cmd/mvebu/Kconfig (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyunmenu "MVEBU commands"
2*4882a593Smuzhiyundepends on ARCH_MVEBU
3*4882a593Smuzhiyun
4*4882a593Smuzhiyunconfig CMD_MVEBU_BUBT
5*4882a593Smuzhiyun	bool "bubt"
6*4882a593Smuzhiyun	default n
7*4882a593Smuzhiyun	help
8*4882a593Smuzhiyun	  bubt - Burn a u-boot image to flash
9*4882a593Smuzhiyun	  For details about bubt command please see the documentation
10*4882a593Smuzhiyun	  in doc/mvebu/cmd/bubt.txt
11*4882a593Smuzhiyun
12*4882a593Smuzhiyunchoice
13*4882a593Smuzhiyun	prompt "Flash for image"
14*4882a593Smuzhiyun	default MVEBU_SPI_BOOT
15*4882a593Smuzhiyun
16*4882a593Smuzhiyunconfig MVEBU_NAND_BOOT
17*4882a593Smuzhiyun	bool "NAND flash boot"
18*4882a593Smuzhiyun	depends on NAND_PXA3XX
19*4882a593Smuzhiyun	help
20*4882a593Smuzhiyun	  Enable boot from NAND flash.
21*4882a593Smuzhiyun	  Allow usage of NAND flash as a target for "bubt" command
22*4882a593Smuzhiyun	  For details about bubt command please see the documentation
23*4882a593Smuzhiyun	  in doc/mvebu/cmd/bubt.txt
24*4882a593Smuzhiyun
25*4882a593Smuzhiyunconfig MVEBU_SPI_BOOT
26*4882a593Smuzhiyun	bool "SPI flash boot"
27*4882a593Smuzhiyun	depends on SPI_FLASH
28*4882a593Smuzhiyun	help
29*4882a593Smuzhiyun	  Enable boot from SPI flash.
30*4882a593Smuzhiyun	  Allow usage of SPI flash as a target for "bubt" command
31*4882a593Smuzhiyun	  For details about bubt command please see the documentation
32*4882a593Smuzhiyun	  in doc/mvebu/cmd/bubt.txt
33*4882a593Smuzhiyun
34*4882a593Smuzhiyunconfig MVEBU_MMC_BOOT
35*4882a593Smuzhiyun	bool "eMMC flash boot"
36*4882a593Smuzhiyun	depends on MVEBU_MMC
37*4882a593Smuzhiyun	help
38*4882a593Smuzhiyun	  Enable boot from eMMC boot partition
39*4882a593Smuzhiyun	  Allow usage of eMMC/SD device as a target for "bubt" command
40*4882a593Smuzhiyun	  For details about bubt command please see the documentation
41*4882a593Smuzhiyun	  in doc/mvebu/cmd/bubt.txt
42*4882a593Smuzhiyun
43*4882a593Smuzhiyunendchoice
44*4882a593Smuzhiyun
45*4882a593Smuzhiyunconfig MVEBU_UBOOT_DFLT_NAME
46*4882a593Smuzhiyun	string "Default image name for bubt command"
47*4882a593Smuzhiyun	default "flash-image.bin"
48*4882a593Smuzhiyun	help
49*4882a593Smuzhiyun	  This option should contain a default file name to be used with
50*4882a593Smuzhiyun	  MVEBU "bubt" command if the source file name is omitted
51*4882a593Smuzhiyun
52*4882a593Smuzhiyunendmenu
53