Commit 2352335b authored by George G. Davis's avatar George G. Davis Committed by Russell King

[ARM PATCH] 1685/1: Fix bootpImage build target

Patch from George G. Davis

The boopImage build target rule is currently broken. This is the quick fix.
parent ce432c93
...@@ -98,7 +98,7 @@ $(obj)/compressed/vmlinux: vmlinux FORCE ...@@ -98,7 +98,7 @@ $(obj)/compressed/vmlinux: vmlinux FORCE
$(Q)$(MAKE) $(build)=$(obj)/compressed $@ $(Q)$(MAKE) $(build)=$(obj)/compressed $@
$(obj)/bootp/bootp: $(obj)/zImage initrd FORCE $(obj)/bootp/bootp: $(obj)/zImage initrd FORCE
$(Q)$(MAKE) $(build)=$(obj)/compressed $@ $(Q)$(MAKE) $(build)=$(obj)/bootp $@
.PHONY: initrd .PHONY: initrd
initrd: initrd:
......
...@@ -16,10 +16,10 @@ SECTIONS ...@@ -16,10 +16,10 @@ SECTIONS
.text : { .text : {
_stext = .; _stext = .;
*(.start) *(.start)
kernel.o arch/arm/boot/bootp/kernel.o
. = ALIGN(32); . = ALIGN(32);
initrd_start = .; initrd_start = .;
initrd.o arch/arm/boot/bootp/initrd.o
initrd_len = . - initrd_start; initrd_len = . - initrd_start;
. = ALIGN(32); . = ALIGN(32);
_etext = .; _etext = .;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment