Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

parisc: Allow building uncompressed Linux kernel

Add HAVE_KERNEL_UNCOMPRESSED flag and fix build in boot
directory.

Signed-off-by: Helge Deller <deller@gmx.de>

+2 -1
+1
arch/parisc/Kconfig
··· 25 25 select INIT_ALL_POSSIBLE 26 26 select BUG 27 27 select BUILDTIME_TABLE_SORT 28 + select HAVE_KERNEL_UNCOMPRESSED 28 29 select HAVE_PCI 29 30 select HAVE_PERF_EVENTS 30 31 select HAVE_KERNEL_BZIP2
+1 -1
arch/parisc/boot/Makefile
··· 10 10 $(obj)/image: vmlinux FORCE 11 11 $(call if_changed,objcopy) 12 12 13 - $(obj)/bzImage: $(obj)/compressed/vmlinux FORCE 13 + $(obj)/bzImage: $(if $(CONFIG_KERNEL_UNCOMPRESSED),$(objtree)/vmlinux,$(obj)/compressed/vmlinux) FORCE 14 14 $(call if_changed,objcopy) 15 15 16 16 $(obj)/compressed/vmlinux: FORCE