diff mbox

[U-Boot,v4,10/12] Correct ih_os for u-boot.img

Message ID 1311004011-9073-11-git-send-email-aneesh@ti.com
State Accepted
Headers show

Commit Message

Aneesh V July 18, 2011, 3:46 p.m. UTC
Provide appropriate '-O u-boot' while doing mkimage
for u-boot.img

Signed-off-by: Aneesh V <aneesh@ti.com>
---
 Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Wolfgang Denk July 28, 2011, 3:17 p.m. UTC | #1
Dear Aneesh V,

In message <1311004011-9073-11-git-send-email-aneesh@ti.com> you wrote:
> Provide appropriate '-O u-boot' while doing mkimage
> for u-boot.img
> 
> Signed-off-by: Aneesh V <aneesh@ti.com>
> ---
>  Makefile |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk
diff mbox

Patch

diff --git a/Makefile b/Makefile
index 0707036..f8ae883 100644
--- a/Makefile
+++ b/Makefile
@@ -375,7 +375,7 @@  $(obj)u-boot.ldr.srec:	$(obj)u-boot.ldr
 
 $(obj)u-boot.img:	$(obj)u-boot.bin
 		$(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
-		-a $(CONFIG_SYS_TEXT_BASE) -e 0 \
+		-O u-boot -a $(CONFIG_SYS_TEXT_BASE) -e 0 \
 		-n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
 			sed -e 's/"[	 ]*$$/ for $(BOARD) board"/') \
 		-d $< $@