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

Configure Feed

Select the types of activity you want to include in your feed.

initramfs: make initramfs compression choice non-optional

Currently, the choice of the initramfs compression mode is too complex
because users are allowed to not specify the compression mode at all.

I think it makes more sense to require users to choose the compression
mode explicitly, and delete the fallback defaults of INITRAMFS_COMPRESSION.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

-8
-8
usr/Kconfig
··· 102 102 103 103 choice 104 104 prompt "Built-in initramfs compression mode" 105 - optional 106 105 help 107 106 This option allows you to decide by which algorithm the builtin 108 107 initramfs will be compressed. Several compression algorithms are ··· 217 218 default ".xz" if INITRAMFS_COMPRESSION_XZ 218 219 default ".lzo" if INITRAMFS_COMPRESSION_LZO 219 220 default ".lz4" if INITRAMFS_COMPRESSION_LZ4 220 - default ".gz" if RD_GZIP 221 - default ".lz4" if RD_LZ4 222 - default ".lzo" if RD_LZO 223 - default ".xz" if RD_XZ 224 - default ".lzma" if RD_LZMA 225 - default ".bz2" if RD_BZIP2 226 - default ""