summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorDongjin Kim <tobetter@gmail.com>2019-05-29 03:15:42 +0900
committerDongjin Kim <tobetter@gmail.com>2019-05-29 03:15:42 +0900
commitc8ec0f24b65c34e64a0f98ffc3173ef00c29584a (patch)
tree6cd295677f784b48ba2fbd098250c718945719d1 /common
parent5a9f449df09818c4e6663ff2dbeb05d8a275d67c (diff)
downloadu-boot-odroid-c1-c8ec0f24b65c34e64a0f98ffc3173ef00c29584a.tar.gz
ODROID-N2: showlogo: replace 'fatload' to 'load'travis/odroidn2-31
Change-Id: I5aec6b78777080ea91f1ae346f7d6cdbd4478908 Signed-off-by: Dongjin Kim <tobetter@gmail.com>
Diffstat (limited to 'common')
-rw-r--r--common/cmd_showlogo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cmd_showlogo.c b/common/cmd_showlogo.c
index 8eb22ea173..ecac6b3b74 100644
--- a/common/cmd_showlogo.c
+++ b/common/cmd_showlogo.c
@@ -107,11 +107,11 @@ static int display_logo(const char* mode, const char* bmp_width, const char* bmp
setenv("bootlogo_addr", getenv("loadaddr")); /* 0x1080000 */
#ifdef CONFIG_VIDEO_BMP_GZIP
- sprintf(str, "fatload mmc %d ${bootlogo_addr} boot-logo.bmp.gz", bootdev);
+ sprintf(str, "load mmc %d ${bootlogo_addr} boot-logo.bmp.gz", bootdev);
ret = run_command(str, 0);
if (!ret) goto display_logo;
#endif
- sprintf(str, "fatload mmc %d ${bootlogo_addr} boot-logo.bmp", bootdev);
+ sprintf(str, "load mmc %d ${bootlogo_addr} boot-logo.bmp", bootdev);
ret = run_command(str, 0);
if (!ret) goto display_logo;