aboutsummaryrefslogtreecommitdiff
path: root/common/spl
diff options
context:
space:
mode:
authorHeiko Thiery <heiko.thiery@gmail.com>2022-01-17 16:25:41 +0100
committerTom Rini <trini@konsulko.com>2022-01-28 17:58:41 -0500
commitc592292385b484e4da07d395ac67cd7f83f3f326 (patch)
tree7c02d10a90d9229e5fd8c2a970374df91ee32356 /common/spl
parent2d0953c0e0de02dc470345c2b07d77d2a782dba6 (diff)
downloadu-boot-c592292385b484e4da07d395ac67cd7f83f3f326.zip
u-boot-c592292385b484e4da07d395ac67cd7f83f3f326.tar.gz
u-boot-c592292385b484e4da07d395ac67cd7f83f3f326.tar.bz2
spl: add support for custom boot method names
Currently the names MMC1, MMC2 and MMC2_2 are output in the SPL. To achieve more userbility here the name of the boot source can be returned. E.g. for "MMC1" -> "eMMC" or "MMC2" -> "SD card". Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com> Reviewed-by: Michael Walle <michael@walle.cc> Tested-by: Michael Walle <michael@walle.cc>
Diffstat (limited to 'common/spl')
-rw-r--r--common/spl/spl.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/common/spl/spl.c b/common/spl/spl.c
index 6945ecb..884102b 100644
--- a/common/spl/spl.c
+++ b/common/spl/spl.c
@@ -174,6 +174,11 @@ __weak void spl_board_prepare_for_optee(void *fdt)
{
}
+__weak const char *spl_board_loader_name(u32 boot_device)
+{
+ return NULL;
+}
+
#if CONFIG_IS_ENABLED(OPTEE_IMAGE)
__weak void __noreturn jump_to_image_optee(struct spl_image_info *spl_image)
{