From f960a27012a813d82f91fa26b44e8990ce312bf0 Mon Sep 17 00:00:00 2001 From: Piotr Dymacz Date: Thu, 16 Jan 2014 03:00:18 +0100 Subject: [PATCH] Small fixes in text --- u-boot/common/cmd_bootm.c | 2 +- u-boot/common/cmd_custom.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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); -- 2.25.1