]> git.neil.brown.name Git - history.git/commitdiff
[ARM PATCH] 1685/1: Fix bootpImage build target
authorGeorge G. Davis <davis_g@com.rmk.(none)>
Thu, 16 Oct 2003 21:35:33 +0000 (22:35 +0100)
committerRussell King <rmk@flint.arm.linux.org.uk>
Thu, 16 Oct 2003 21:35:33 +0000 (22:35 +0100)
Patch from George G. Davis

The boopImage build target rule is currently broken. This is the quick fix.

arch/arm/boot/Makefile
arch/arm/boot/bootp/bootp.lds

index 980d7f2d7a6dff4be167ca10243eb3c56a2146c8..011f788a701cd46c1ffc9034b8c1dbfef4038e55 100644 (file)
@@ -98,7 +98,7 @@ $(obj)/compressed/vmlinux: vmlinux FORCE
        $(Q)$(MAKE) $(build)=$(obj)/compressed $@
 
 $(obj)/bootp/bootp: $(obj)/zImage initrd FORCE
-       $(Q)$(MAKE) $(build)=$(obj)/compressed $@
+       $(Q)$(MAKE) $(build)=$(obj)/bootp $@
 
 .PHONY: initrd
 initrd:
index 6fbd9ce0bbeb70f55f09a81eb2234040a7201c43..52e375e7e7fbcec0d8400f24e686e4d76d79d7be 100644 (file)
@@ -16,10 +16,10 @@ SECTIONS
   .text : {
    _stext = .;
    *(.start)
-   kernel.o
+   arch/arm/boot/bootp/kernel.o
    . = ALIGN(32);
    initrd_start = .;
-   initrd.o
+   arch/arm/boot/bootp/initrd.o
    initrd_len = . - initrd_start;
    . = ALIGN(32);
    _etext = .;