Patch from George G. Davis
The boopImage build target rule is currently broken. This is the quick fix.
$(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:
.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 = .;