xref: /rk3399_rockchip-uboot/arch/mips/mach-bmips/Kconfig (revision ee422142f454d54f0ed39a2cbf083ff12e98a3e1)
1menu "Broadcom MIPS platforms"
2	depends on ARCH_BMIPS
3
4config SYS_SOC
5	default "none"
6
7choice
8	prompt "Boot mode"
9
10config BMIPS_BOOT_RAM
11	bool "RAM boot"
12	depends on BMIPS_SUPPORTS_BOOT_RAM
13	help
14	  This builds an image that is linked to a RAM address. It can be used
15	  for booting from CFE via TFTP using an ELF image, but it can also be
16	  booted from RAM by other bootloaders using a BIN image.
17
18endchoice
19
20config BMIPS_SUPPORTS_BOOT_RAM
21	bool
22
23endmenu
24