2008-09-23 Joel Sherrill <joel.sherrill@OARcorp.com>

* custom/lpc2478.cfg: Comment out use of U-Boot specific mkimage since
	we do not reliably know it is installed.
This commit is contained in:
Joel Sherrill
2008-09-23 14:08:16 +00:00
parent 8a6c48076e
commit 8f912f27c5
2 changed files with 8 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2008-09-23 Joel Sherrill <joel.sherrill@OARcorp.com>
* custom/lpc2478.cfg: Comment out use of U-Boot specific mkimage since
we do not reliably know it is installed.
2008-09-22 Sebastian Huber <sebastian.huber@embedded-brains.de>
* custom/lpc2478.cfg: New file.

View File

@@ -19,6 +19,8 @@ CFLAGS_OPTIMIZE_V = -Os -g
define bsp-post-link
$(OBJCOPY) -O binary '$@' '$(basename $@).bin'
gzip -f -9 '$(basename $@).bin'
mkimage -A arm -O rtems -T kernel -C gzip -a a0000000 -e a0000000 -name '$(notdir $@)' -d '$(basename $@).bin.gz' '$(basename $@).img'
# mkimage -A arm -O rtems -T kernel -C gzip \
# -a a0000000 -e a0000000 -name '$(notdir $@)' \
# -d '$(basename $@).bin.gz' '$(basename $@).img'
$(default-bsp-post-link)
endef