diff options
author | Johan Sagaert <sagaert.johan@proximus.be> | 2015-07-12 13:43:32 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-12-13 16:22:40 +0100 |
commit | 3ea133c9710b7d479c7828a59a99f3d10f74be35 (patch) | |
tree | fd48ad3d0a26c7582487ce60b60bf3d50e8c9a71 /linux/Config.in | |
parent | 27d6deb449fdb3b7662059a83212787ae568c76e (diff) | |
download | buildroot-3ea133c9710b7d479c7828a59a99f3d10f74be35.tar.gz buildroot-3ea133c9710b7d479c7828a59a99f3d10f74be35.zip |
linux: Add kernel compression selection.
This selection will ensure that the correct host tools
will be build used for the kernel compression method used.
[Maxime: Select the compression opts in the kernel config too ]
Signed-off-by: Sagaert Johan <sagaert.johan@proximus.be>
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998 at free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'linux/Config.in')
-rw-r--r-- | linux/Config.in | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/linux/Config.in b/linux/Config.in index 432cba45d1..57b3490e89 100644 --- a/linux/Config.in +++ b/linux/Config.in @@ -262,6 +262,34 @@ config BR2_LINUX_KERNEL_IMAGE_TARGET_CUSTOM endchoice +# +# Kernel compression format +# + +choice + prompt "Kernel compression format" + help + This selection will just ensure that the correct host tools are build. + The actual compression for the kernel should be selected in the + kernel configuration menu. + +config BR2_LINUX_KERNEL_GZIP + bool "gzip compression" + +config BR2_LINUX_KERNEL_LZ4 + bool "lz4 compression" + +config BR2_LINUX_KERNEL_LZMA + bool "lzma compression" + +config BR2_LINUX_KERNEL_LZO + bool "lzo compression" + +config BR2_LINUX_KERNEL_XZ + bool "xz compression" + +endchoice + config BR2_LINUX_KERNEL_IMAGE_TARGET_NAME string "Kernel image target name" depends on BR2_LINUX_KERNEL_IMAGE_TARGET_CUSTOM |