Skip to content

Commit

Permalink
parisc: Always use the self-extracting kernel feature
Browse files Browse the repository at this point in the history
This patch drops the CONFIG_PARISC_SELF_EXTRACT option.

The palo boot loader is able to decompress a kernel which was compressed
with gzip. That possibility was useful when the Linux kernel
self-extracting feature wasn't implemented yet.

Beside the fact that the self-extracting feature offers much better
compression rates, we do support self-extracting kernels already since
kernel v4.14, so now it's really time to get rid of that old option and
always use the self-extractor.

Signed-off-by: Helge Deller <[email protected]>
  • Loading branch information
hdeller committed Mar 11, 2022
1 parent 9c379c6 commit b9f50ee
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 21 deletions.
12 changes: 0 additions & 12 deletions arch/parisc/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -260,18 +260,6 @@ config PARISC_PAGE_SIZE_64KB

endchoice

config PARISC_SELF_EXTRACT
bool "Build kernel as self-extracting executable"
default y
help
Say Y if you want to build the parisc kernel as a kind of
self-extracting executable.

If you say N here, the kernel will be compressed with gzip
which can be loaded by the palo bootloader directly too.

If you don't know what to do here, say Y.

config SMP
bool "Symmetric multi-processing support"
help
Expand Down
9 changes: 0 additions & 9 deletions arch/parisc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,8 @@
# Mike Shaver, Helge Deller and Martin K. Petersen
#

ifdef CONFIG_PARISC_SELF_EXTRACT
boot := arch/parisc/boot
KBUILD_IMAGE := $(boot)/bzImage
else
KBUILD_IMAGE := vmlinuz
endif

NM = sh $(srctree)/arch/parisc/nm
CHECKFLAGS += -D__hppa__=1
Expand Down Expand Up @@ -165,13 +161,8 @@ Image: vmlinux
bzImage: vmlinux
$(Q)$(MAKE) $(build)=$(boot) $(boot)/$@

ifdef CONFIG_PARISC_SELF_EXTRACT
vmlinuz: bzImage
$(OBJCOPY) $(boot)/bzImage $@
else
vmlinuz: vmlinux
@$(KGZIP) -cf -9 $< > $@
endif

ifeq ($(KBUILD_EXTMOD),)
# We need to generate vdso-offsets.h before compiling certain files in kernel/.
Expand Down

0 comments on commit b9f50ee

Please sign in to comment.