Kconfig (f26661e1276537f5adda440a37e2a2c694147781) | Kconfig (65e00e04e5aea34b256814cfa21b32e3b94a2402) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2# 3# Configuration for initramfs 4# 5 6config INITRAMFS_SOURCE 7 string "Initramfs source file(s)" 8 default "" --- 193 unchanged lines hidden (view full) --- 202 It's compression ratio is the poorest amongst the choices. The kernel 203 size is about 15% bigger than gzip; however its decompression speed 204 is the fastest. 205 206 If you choose this, keep in mind that most distros don't provide lz4 207 by default which could cause a build failure. 208 209endchoice | 1# SPDX-License-Identifier: GPL-2.0 2# 3# Configuration for initramfs 4# 5 6config INITRAMFS_SOURCE 7 string "Initramfs source file(s)" 8 default "" --- 193 unchanged lines hidden (view full) --- 202 It's compression ratio is the poorest amongst the choices. The kernel 203 size is about 15% bigger than gzip; however its decompression speed 204 is the fastest. 205 206 If you choose this, keep in mind that most distros don't provide lz4 207 by default which could cause a build failure. 208 209endchoice |
210 211config INITRAMFS_COMPRESSION 212 string 213 default "" if INITRAMFS_COMPRESSION_NONE 214 default ".gz" if INITRAMFS_COMPRESSION_GZIP 215 default ".bz2" if INITRAMFS_COMPRESSION_BZIP2 216 default ".lzma" if INITRAMFS_COMPRESSION_LZMA 217 default ".xz" if INITRAMFS_COMPRESSION_XZ 218 default ".lzo" if INITRAMFS_COMPRESSION_LZO 219 default ".lz4" if INITRAMFS_COMPRESSION_LZ4 | |