From: Piotr Dymacz Date: Thu, 16 Jan 2014 02:00:18 +0000 (+0100) Subject: Small fixes in text X-Git-Tag: 2014-11-19~41 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f960a27012a813d82f91fa26b44e8990ce312bf0;p=oweals%2Fu-boot_mod.git Small fixes in text --- diff --git a/u-boot/common/cmd_bootm.c b/u-boot/common/cmd_bootm.c index c31c399..ef2fb72 100755 --- a/u-boot/common/cmd_bootm.c +++ b/u-boot/common/cmd_bootm.c @@ -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; diff --git a/u-boot/common/cmd_custom.c b/u-boot/common/cmd_custom.c index 5f228b4..e778d3e 100755 --- a/u-boot/common/cmd_custom.c +++ b/u-boot/common/cmd_custom.c @@ -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);