From 65ed00323f3807197a83abc75d62ed2a8d3f60de Mon Sep 17 00:00:00 2001 From: Steve Sakoman Date: Mon, 8 Sep 2008 21:42:28 -0700 Subject: [PATCH] lib/board.c: Specify where u-boot is being loaded from --- lib/board.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/board.c b/lib/board.c index ef00bff..a3b8369 100644 --- a/lib/board.c +++ b/lib/board.c @@ -93,7 +93,7 @@ void start_armboot (void) size = file_fat_read("u-boot.bin", buf, 0); if (size > 0) { #ifdef CFG_PRINTF - printf("Booting from mmc\n"); + printf("Loading u-boot.bin from mmc\n"); #endif buf += size; } @@ -104,7 +104,7 @@ void start_armboot (void) /* if no u-boot on mmc, try onenand or nand, depending upon sysboot */ if (get_mem_type() == GPMC_ONENAND){ #ifdef CFG_PRINTF - printf("Booting from onenand\n"); + printf("Loading u-boot.bin from onenand\n"); #endif for (i = ONENAND_START_BLOCK; i < ONENAND_END_BLOCK; i++){ if (!onenand_read_block(buf, i)) @@ -112,7 +112,7 @@ void start_armboot (void) } } else if (get_mem_type() == GPMC_NAND){ #ifdef CFG_PRINTF - printf("Booting from nand\n"); + printf("Loading u-boot.bin from nand\n"); #endif for (i = NAND_UBOOT_START; i < NAND_UBOOT_END; i+= NAND_BLOCK_SIZE){ if (!nand_read_block(buf, i)) -- 2.11.4.GIT