diff options
author | Emmanuel Vadot <manu@freebsd.org> | 2018-07-02 14:34:55 +0200 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2018-12-02 22:59:55 +0100 |
commit | 7ace8a0e8d419be3308237f32008e4f4ae21cfbf (patch) | |
tree | a616d2a1bdc71f0a7968e6e563f5cfb194d74c6f /include/configs/rpi.h | |
parent | 952061352acfd24034e6990b6b7d32cded020c0a (diff) | |
download | u-boot-7ace8a0e8d419be3308237f32008e4f4ae21cfbf.tar.gz |
rpi: Add mmc 1 as a boot target
When booting with the rpi-firmware "mmc" overlay that disable
the SDHOST controller and use the SDHCI one for the sd card,
mmc 1 because a viable boot target.
Add it to the list
Signed-off-by: Oleksandr Tymoshenko <gonzo@FreeBSD.org>
Signed-off-by: Emmanuel Vadot <manu@freebsd.org>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include/configs/rpi.h')
-rw-r--r-- | include/configs/rpi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/configs/rpi.h b/include/configs/rpi.h index 37be6dbeeb..9ce41767a9 100644 --- a/include/configs/rpi.h +++ b/include/configs/rpi.h @@ -148,6 +148,7 @@ #define BOOT_TARGET_DEVICES(func) \ func(MMC, mmc, 0) \ + func(MMC, mmc, 1) \ func(USB, usb, 0) \ func(PXE, pxe, na) \ func(DHCP, dhcp, na) |