Small fixes in text
authorPiotr Dymacz <pepe2k@gmail.com>
Thu, 16 Jan 2014 02:00:18 +0000 (03:00 +0100)
committerPiotr Dymacz <pepe2k@gmail.com>
Thu, 16 Jan 2014 02:00:18 +0000 (03:00 +0100)
u-boot/common/cmd_bootm.c
u-boot/common/cmd_custom.c

index c31c39910f5adfd7f290ca054ef1f9dbea00aa00..ef2fb72b3d49b8935282e556977a83a0affda82b 100755 (executable)
@@ -366,7 +366,7 @@ void print_image_hdr(image_header_t *hdr){
        printf("\n   Data size:    %d Bytes = ", ntohl(hdr->ih_size));
        print_size(ntohl(hdr->ih_size), "\n");
 
-       printf("   Load address: %08X\n   Entry point:  %08X\n", ntohl(hdr->ih_load), ntohl(hdr->ih_ep));
+       printf("   Load address: 0x%08X\n   Entry point:  0x%08X\n", ntohl(hdr->ih_load), ntohl(hdr->ih_ep));
 
        if(hdr->ih_type == IH_TYPE_MULTI){
                int i;
index 5f228b41faa3353c93944df0561f9d5f8fdec2df..e778d3efa74fdcc57565c91dda2bc699e2f02195 100755 (executable)
@@ -108,7 +108,7 @@ int do_set_mac(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]){
                return(1);
        }
 
-       puts("** Notice: you should always make a backup of your device\n           entire FLASH content before making any changes\n\n");
+       puts("** Notice:\n   you should always make a backup of your device\n           entire FLASH content before making any changes\n\n");
 
        memcpy((void *)data_pointer, (void *)(CFG_FLASH_BASE + OFFSET_MAC_DATA_BLOCK), OFFSET_MAC_DATA_BLOCK_LENGTH);