diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-02-04 17:24:10 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-02-04 17:24:10 -0800 |
commit | a86b90de0542948b61f24d7a39652d54761d50b9 (patch) | |
tree | 8b922a74e654ef0bdf5ea73160f0a2fa6bca27ea /mbr/Makefile | |
parent | 3524223967b08ffdcf7addfc606aaeacd872dac3 (diff) | |
download | syslinux-elf-a86b90de0542948b61f24d7a39652d54761d50b9.tar.gz syslinux-elf-a86b90de0542948b61f24d7a39652d54761d50b9.tar.xz syslinux-elf-a86b90de0542948b61f24d7a39652d54761d50b9.zip |
Fix numerous problems in the new MBR code.syslinux-3.36-pre5
Diffstat (limited to 'mbr/Makefile')
-rw-r--r-- | mbr/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mbr/Makefile b/mbr/Makefile index 1772d14e..75da4484 100644 --- a/mbr/Makefile +++ b/mbr/Makefile @@ -33,8 +33,8 @@ all: mbr.bin %.o: %.S $(CC) $(SFLAGS) -Wa,-a=$*.lst -c -o $@ $< -mbr.elf: mbr.o - $(LD) -Ttext 0x600 -e _start -o $@ $^ +mbr.elf: mbr.o mbr.ld + $(LD) -T mbr.ld -e _start -o $@ $< mbr.bin: mbr.elf checksize.pl $(OBJCOPY) -O binary $< $@ |