mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-19 05:31:32 +00:00
spl: spl_mmc: Partition raw boot mode for eMMC
This adds support for providing a partition number instead of a sector for eMMC. Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
This commit is contained in:
parent
91199f4a5a
commit
ecb301394b
1 changed files with 5 additions and 0 deletions
|
@ -196,8 +196,13 @@ void spl_mmc_load_image(void)
|
|||
return;
|
||||
}
|
||||
#endif
|
||||
#ifdef CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION
|
||||
err = mmc_load_image_raw_partition(mmc,
|
||||
CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION);
|
||||
#else
|
||||
err = mmc_load_image_raw_sector(mmc,
|
||||
CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR);
|
||||
#endif
|
||||
if (!err)
|
||||
return;
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue