summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-08-24 06:45:03 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-08-24 06:45:03 +0000
commit4d4cc6e18a1b81d8f0e7f443ac6416a963e9a5df (patch)
treee55186dd070730b10d3a4fd28d1d62a9cc013356 /make
parent2003-08-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-4d4cc6e18a1b81d8f0e7f443ac6416a963e9a5df.tar.bz2
2003-08-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
PR 470/bsps * custom/mcp750.cfg, custom/mtx603e.cfg, custem/mvme2307.cfg (make-exe): Rearrange arguments in calls to OBJCOPY to $(OBJCOPY) options infile outfile. (Reported for mcp750.cfg by Andrew Harris <Andrew.Harris@jhuapl.edu>).
Diffstat (limited to 'make')
-rw-r--r--make/ChangeLog7
-rw-r--r--make/custom/mcp750.cfg2
-rw-r--r--make/custom/mtx603e.cfg2
-rw-r--r--make/custom/mvme2307.cfg2
4 files changed, 10 insertions, 3 deletions
diff --git a/make/ChangeLog b/make/ChangeLog
index a8406cf5ef..d94eed9e96 100644
--- a/make/ChangeLog
+++ b/make/ChangeLog
@@ -1,3 +1,10 @@
+2003-08-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ PR 470/bsps
+ * custom/mcp750.cfg, custom/mtx603e.cfg, custem/mvme2307.cfg (make-exe):
+ Rearrange arguments in calls to OBJCOPY to $(OBJCOPY) options infile outfile.
+ (Reported for mcp750.cfg by Andrew Harris <Andrew.Harris@jhuapl.edu>).
+
2003-08-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* custom/mvme167.cfg: Remove PRINTK_MINOR, CONSOLE_MINOR (move to
diff --git a/make/custom/mcp750.cfg b/make/custom/mcp750.cfg
index ef1c077faa..a8cd098c06 100644
--- a/make/custom/mcp750.cfg
+++ b/make/custom/mcp750.cfg
@@ -41,7 +41,7 @@ define make-exe
-o $(basename $@).nxe $(LINK_OBJS) $(LINK_LIBS)
$(NM) -g -n $(basename $@).nxe > $(basename $@).num
$(SIZE) $(basename $@).nxe
- $(OBJCOPY) $(basename $@).nxe rtems -O binary -R .comment -S
+ $(OBJCOPY) -O binary -R .comment -S $(basename $@).nxe rtems
gzip -vf9 rtems
$(LD) -o $@ $(PROJECT_RELEASE)/lib/bootloader.o --just-symbols=$(basename $@).nxe \
-b binary rtems.gz -T $(PROJECT_RELEASE)/lib/ppcboot.lds \
diff --git a/make/custom/mtx603e.cfg b/make/custom/mtx603e.cfg
index 68a9a126b0..772ee20d80 100644
--- a/make/custom/mtx603e.cfg
+++ b/make/custom/mtx603e.cfg
@@ -36,7 +36,7 @@ define make-exe
-o $(basename $@).nxe $(LINK_OBJS) $(LINK_LIBS)
$(NM) -g -n $(basename $@).nxe > $(basename $@).num
$(SIZE) $(basename $@).nxe
- $(OBJCOPY) $(basename $@).nxe rtems -O binary -R .comment -S
+ $(OBJCOPY) -O binary -R .comment -S $(basename $@).nxe rtems
gzip -vf9 rtems
$(LD) -o $@ $(PROJECT_RELEASE)/lib/bootloader.o --just-symbols=$(basename $@).nxe \
-b binary rtems.gz -T $(PROJECT_RELEASE)/lib/ppcboot.lds \
diff --git a/make/custom/mvme2307.cfg b/make/custom/mvme2307.cfg
index 9303bde89f..198a1d274a 100644
--- a/make/custom/mvme2307.cfg
+++ b/make/custom/mvme2307.cfg
@@ -33,7 +33,7 @@ define make-exe
-o $(basename $@).nxe $(LINK_OBJS) $(LINK_LIBS)
$(NM) -g -n $(basename $@).nxe > $(basename $@).num
$(SIZE) $(basename $@).nxe
- $(OBJCOPY) $(basename $@).nxe rtems -O binary -R .comment -S
+ $(OBJCOPY) -O binary -R .comment -S $(basename $@).nxe rtems
gzip -vf9 rtems
$(LD) -o $@ $(PROJECT_RELEASE)/lib/bootloader.o --just-symbols=$(basename $@).nxe \
-b binary rtems.gz -T $(PROJECT_RELEASE)/lib/ppcboot.lds \