Skip to content

Commit

Permalink
commit 1858f72fa2e2f63e62114a9bd40c8e68468d8c5e
Browse files Browse the repository at this point in the history
Author: Ralf Baechle <ralf@linux-mips.org>
Date:   Fri Jul 22 05:46:02 2005 +0000

New build target vmlinux.bin build raw binary image for Qemu.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Ralf Baechle committed Oct 29, 2005
1 parent 3ce86ee commit 154b500
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
8 changes: 7 additions & 1 deletion arch/mips/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -774,10 +774,17 @@ ifdef CONFIG_MIPS_SEAD
all: vmlinux.srec
endif

ifdef CONFIG_QEMU
all: vmlinux.bin
endif

ifdef CONFIG_SNI_RM200_PCI
all: vmlinux.ecoff
endif

vmlinux.bin: $(vmlinux-32)
+@$(call makeboot,$@)

vmlinux.ecoff vmlinux.rm200: $(vmlinux-32)
+@$(call makeboot,$@)

Expand All @@ -793,7 +800,6 @@ archclean:
@$(MAKE) $(clean)=arch/mips/boot
@$(MAKE) $(clean)=arch/mips/lasat


CLEAN_FILES += vmlinux.32 \
vmlinux.64 \
vmlinux.ecoff
4 changes: 4 additions & 0 deletions arch/mips/boot/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ vmlinux.ecoff: $(obj)/elf2ecoff $(VMLINUX)
$(obj)/elf2ecoff: $(obj)/elf2ecoff.c
$(HOSTCC) -o $@ $^

vmlinux.bin: $(VMLINUX)
$(OBJCOPY) -O binary $(strip-flags) $(VMLINUX) $(obj)/vmlinux.bin

vmlinux.srec: $(VMLINUX)
$(OBJCOPY) -S -O srec $(strip-flags) $(VMLINUX) $(obj)/vmlinux.srec

Expand All @@ -45,5 +48,6 @@ archhelp:

clean-files += addinitrd \
elf2ecoff \
vmlinux.bin \
vmlinux.ecoff \
vmlinux.srec

0 comments on commit 154b500

Please sign in to comment.