mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-05 12:46:14 +02:00
vexpress64: Add MMC card to the BOOT_TARGET_DEVICES of FVP
Add MMC disk to FVP's BOOT_TARGET_DEVICES. This allows the user to boot from MMC devices. Signed-off-by: Wei Chen <wei.chen@arm.com> Signed-off-by: Qi Feng <qi.feng@arm.com> Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
ffdb85bfcf
commit
86a5741c34
@ -148,6 +148,12 @@
|
||||
#define FUNC_VIRTIO(func)
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_CMD_MMC
|
||||
#define FUNC_MMC(func) func(MMC, mmc, 0)
|
||||
#else
|
||||
#define FUNC_MMC(func)
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Boot by loading an Android image, or kernel, initrd and FDT through
|
||||
* semihosting into DRAM.
|
||||
@ -204,6 +210,7 @@
|
||||
func(SMH, smh, na) \
|
||||
func(MEM, mem, na) \
|
||||
FUNC_VIRTIO(func) \
|
||||
FUNC_MMC(func) \
|
||||
func(PXE, pxe, na) \
|
||||
func(DHCP, dhcp, na)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user