diff options
author | Devarsh Thakkar <devarsht@ti.com> | 2024-01-24 14:35:09 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-01-29 14:50:05 -0500 |
commit | 54245af0ae30369170815bbc405c2f69f778bee1 (patch) | |
tree | 3ac7c47d586223ab57f90d99a81f5db550859dd2 /common | |
parent | 073f4f10b9941c7b3cec7db41c82ac00b811eaba (diff) | |
download | u-boot-54245af0ae30369170815bbc405c2f69f778bee1.zip u-boot-54245af0ae30369170815bbc405c2f69f778bee1.tar.gz u-boot-54245af0ae30369170815bbc405c2f69f778bee1.tar.bz2 |
common: splash_source: Don't compile ubifs splash cmd for SPL build
Don't compile ubifs splash mount command for SPL build as this command
is not supported (and also not enabled) during SPL stage.
This fixes below compilation error, when CONFIG_CMD_UBIFS is enabled in
defconfig along with splash screen enabled at SPL stage:
"aarch64-none-linux-gnu-ld.bfd: common/cli.o: in function `run_command':
u-boot-next/u-boot/common/cli.c:51: undefined reference to
`parse_string_outer'
u-boot-next/u-boot/common/cli.c:51:(.text.run_command+0x10): relocation
truncated to fit: R_AARCH64_JUMP26 against undefined symbol
`parse_string_outer' make[2]: ***
[u-boot-next/u-boot/scripts/Makefile.spl:527: spl/u-boot-spl] Error 1
make[1]: *** [u-boot-next/u-boot/Makefile:2053: spl/u-boot-spl] Error 2
make[1]: Leaving directory 'u-boot-next/u-boot/out/a53' make: ***
[Makefile:177: sub-make] Error 2"
Fixes: eb9217dc03 ("common: Enable splash functions at SPL")
Signed-off-by: Devarsh Thakkar <devarsht@ti.com>
Reviewed-by: Nikhil M Jain <n-jain1@ti.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/splash_source.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/splash_source.c b/common/splash_source.c index 7223a1a..2ce0768 100644 --- a/common/splash_source.c +++ b/common/splash_source.c @@ -216,7 +216,7 @@ static int splash_init_virtio(void) } } -#ifdef CONFIG_CMD_UBIFS +#if defined(CONFIG_CMD_UBIFS) && !defined(CONFIG_SPL_BUILD) static int splash_mount_ubifs(struct splash_location *location) { int res; |