summaryrefslogtreecommitdiffstats
path: root/make/custom
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-23 14:08:16 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-23 14:08:16 +0000
commit8f912f27c58990344060e1be5611d00a4b32a89c (patch)
tree839a052fe5b5e617565b1b1de7c5facaa5611521 /make/custom
parent2008-09-23 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-8f912f27c58990344060e1be5611d00a4b32a89c.tar.bz2
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.
Diffstat (limited to 'make/custom')
-rw-r--r--make/custom/lpc2478.cfg4
1 files changed, 3 insertions, 1 deletions
diff --git a/make/custom/lpc2478.cfg b/make/custom/lpc2478.cfg
index 90929506de..a86b9ac9dc 100644
--- a/make/custom/lpc2478.cfg
+++ b/make/custom/lpc2478.cfg
@@ -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