From: Emmanuel Vadot Date: Mon, 2 Jul 2018 12:34:55 +0000 (+0200) Subject: rpi: Add mmc 1 as a boot target X-Git-Tag: v2019.01-rc1~8^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7ace8a0e8d419be3308237f32008e4f4ae21cfbf;p=platform%2Fkernel%2Fu-boot.git 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 Signed-off-by: Emmanuel Vadot Signed-off-by: Alexander Graf --- diff --git a/include/configs/rpi.h b/include/configs/rpi.h index 37be6db..9ce4176 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)