aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2009-06-22 20:05:56 -0400
committerKevin O'Connor <kevin@koconnor.net>2009-06-22 20:05:56 -0400
commit5c3f5dde217f382b02350973a38f50941904473d (patch)
tree841ae3bb52f40d1a5fa0c27c2cc3ad8d5d837362
parent603bfc3a2f1f6ab587dd70007543dd040bddd65b (diff)
downloadseabios-5c3f5dde217f382b02350973a38f50941904473d.tar.gz
Don't use "objcopy --extract-symbol" - old binutils don't have that option.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 71e3cb48..10aa96f0 100644
--- a/Makefile
+++ b/Makefile
@@ -135,7 +135,7 @@ $(OUT)rom.o: $(OUT)rom16.o $(OUT)rom32.o $(OUT)rombios16.lds $(OUT)rombios.lds
@echo " Linking $@"
$(Q)$(LD) -T $(OUT)rombios16.lds $(OUT)rom16.o -R $(OUT)rom32.o -o $(OUT)rom16.reloc.o
$(Q)$(STRIP) $(OUT)rom16.reloc.o -o $(OUT)rom16.final.o
- $(Q)$(OBJCOPY) --extract-symbol --adjust-vma 0xf0000 $(OUT)rom16.o $(OUT)rom16.moved.o
+ $(Q)$(OBJCOPY) --adjust-vma 0xf0000 $(OUT)rom16.o $(OUT)rom16.moved.o
$(Q)$(LD) -T $(OUT)rombios.lds $(OUT)rom16.final.o $(OUT)rom32.o -R $(OUT)rom16.moved.o -o $@
$(OUT)bios.bin.elf: $(OUT)rom.o