summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-02-17 18:35:15 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-02-17 18:35:15 +0000
commit301768921112ab2075b7f0e4b3b5729b02afdd7b (patch)
tree0cbced68eb2727ce284f5df6c95d389706feda3a /make
parent2009-02-17 Till Straumann <strauman@slac.stanford.edu> (diff)
downloadrtems-301768921112ab2075b7f0e4b3b5729b02afdd7b.tar.bz2
2009-02-17 Till Straumann <strauman@slac.stanford.edu>
PR 1371/bsps * custom/mvme167.cfg: mvme167 needs to convert ELF -> pure binary RALF.
Diffstat (limited to 'make')
-rw-r--r--make/ChangeLog5
-rw-r--r--make/custom/mvme167.cfg3
2 files changed, 6 insertions, 2 deletions
diff --git a/make/ChangeLog b/make/ChangeLog
index 9d9d11518d..cbba9a00b1 100644
--- a/make/ChangeLog
+++ b/make/ChangeLog
@@ -1,3 +1,8 @@
+2009-02-17 Till Straumann <strauman@slac.stanford.edu>
+
+ PR 1371/bsps
+ * custom/mvme167.cfg: mvme167 needs to convert ELF -> pure binary RALF.
+
2009-02-17 Joel Sherrill <joel.sherrill@OARcorp.com>
* custom/uC5282.cfg: Add cvs Id.
diff --git a/make/custom/mvme167.cfg b/make/custom/mvme167.cfg
index 869bdbdbb2..5a4a771c77 100644
--- a/make/custom/mvme167.cfg
+++ b/make/custom/mvme167.cfg
@@ -42,6 +42,5 @@ CFLAGS_OPTIMIZE_V = -O2 -g -fno-omit-frame-pointer
# for more details.
define bsp-post-link
$(default-bsp-post-link)
- cp $(basename $@).exe $(basename $@)$(DOWNEXT)
- $(STRIP) $(basename $@)$(DOWNEXT)
+ $(OBJCOPY) -O binary -R .comment -S $(basename $@).exe $(basename $@)$(DOWNEXT)
endef