diff options
author | xypron.glpk@gmx.de <xypron.glpk@gmx.de> | 2017-04-15 21:30:39 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-05-01 11:49:48 -0400 |
commit | 1f677e4266b1265fca9c8cc93f755900b3ce7503 (patch) | |
tree | 6e2b694ba81f3224446daf303e42f8981271dc10 /include/configs/meson-gxbb-common.h | |
parent | 2681e78a5ee0e3d6d45abc195c81d1c527fcea0b (diff) | |
download | u-boot-1f677e4266b1265fca9c8cc93f755900b3ce7503.tar.gz u-boot-1f677e4266b1265fca9c8cc93f755900b3ce7503.tar.xz u-boot-1f677e4266b1265fca9c8cc93f755900b3ce7503.zip |
meson: gxbb: enable MMC as boot target
To enable automatic booting from SD card or eMMC the MMC
devices 0, 1, and 2 are added to the BOOT_TARGET_DEVICES.
Booting from SD card, eMMC, and DHCP are tried in sequence.
A missing or failing device is gracefully handled.
Cc: Andreas Färber <afaerber@suse.de>
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Tested-by: Vagrant Cascadian <vagrant@debian.org>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Tested-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'include/configs/meson-gxbb-common.h')
-rw-r--r-- | include/configs/meson-gxbb-common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/configs/meson-gxbb-common.h b/include/configs/meson-gxbb-common.h index cc2b5b61d4..997ce2df19 100644 --- a/include/configs/meson-gxbb-common.h +++ b/include/configs/meson-gxbb-common.h @@ -39,6 +39,9 @@ #include <config_distro_defaults.h> #define BOOT_TARGET_DEVICES(func) \ + func(MMC, mmc, 0) \ + func(MMC, mmc, 1) \ + func(MMC, mmc, 2) \ func(DHCP, dhcp, na) #include <config_distro_bootcmd.h> |