lib/board.c: Specify where u-boot is being loaded from
authorSteve Sakoman <steve@sakoman.com>
Tue, 9 Sep 2008 04:42:28 +0000 (21:42 -0700)
committerSteve Sakoman <steve@sakoman.com>
Tue, 9 Sep 2008 04:42:28 +0000 (21:42 -0700)
lib/board.c

index ef00bff..a3b8369 100644 (file)
@@ -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))