mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
spl: if MMCSD_MODE_RAW fails, try MMCSD_MODE_FS
Since commit fd61d39970
:
spl: mmc: add break statements in spl_mmc_load_image()
RAW and FS boot modes are now exclusive again. So, if MMCSD_MODE_RAW fails, the
board hangs. This patch allows to try MMCSD_MODE_FS then.
It has been tested on a beaglebone black to boot on an EXT partition.
Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
Cc: Tom Rini <trini@konsulko.com>
Cc: Nikita Kiryanov <nikita@compulab.co.il>
Cc: Igor Grinberg <grinberg@compulab.co.il>
Cc: Paul Kocialkowski <contact@paulk.fr>
Cc: Pantelis Antoniou <panto@antoniou-consulting.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Matwey V. Kornilov <matwey.kornilov@gmail.com>
Acked-by: Nikita Kiryanov <nikita@compulab.co.il>
This commit is contained in:
parent
cf432dd595
commit
86a0df7328
1 changed files with 1 additions and 1 deletions
|
@ -284,7 +284,7 @@ int spl_mmc_load_image(u32 boot_device)
|
||||||
if (!err)
|
if (!err)
|
||||||
return err;
|
return err;
|
||||||
#endif
|
#endif
|
||||||
break;
|
/* If RAW mode fails, try FS mode. */
|
||||||
case MMCSD_MODE_FS:
|
case MMCSD_MODE_FS:
|
||||||
debug("spl: mmc boot mode: fs\n");
|
debug("spl: mmc boot mode: fs\n");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue