aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 17 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2f6c0e9c684a..920ad07180c9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
1VERSION = 3 1VERSION = 3
2PATCHLEVEL = 12 2PATCHLEVEL = 12
3SUBLEVEL = 0 3SUBLEVEL = 0
4EXTRAVERSION = -rc1 4EXTRAVERSION =
5NAME = One Giant Leap for Frogkind 5NAME = One Giant Leap for Frogkind
6 6
7# *DOCUMENTATION* 7# *DOCUMENTATION*
@@ -729,6 +729,22 @@ mod_strip_cmd = true
729endif # INSTALL_MOD_STRIP 729endif # INSTALL_MOD_STRIP
730export mod_strip_cmd 730export mod_strip_cmd
731 731
732# Select initial ramdisk compression format, default is gzip(1).
733# This shall be used by the dracut(8) tool while creating an initramfs image.
734#
735INITRD_COMPRESS=gzip
736ifeq ($(CONFIG_RD_BZIP2), y)
737 INITRD_COMPRESS=bzip2
738else ifeq ($(CONFIG_RD_LZMA), y)
739 INITRD_COMPRESS=lzma
740else ifeq ($(CONFIG_RD_XZ), y)
741 INITRD_COMPRESS=xz
742else ifeq ($(CONFIG_RD_LZO), y)
743 INITRD_COMPRESS=lzo
744else ifeq ($(CONFIG_RD_LZ4), y)
745 INITRD_COMPRESS=lz4
746endif
747export INITRD_COMPRESS
732 748
733ifdef CONFIG_MODULE_SIG_ALL 749ifdef CONFIG_MODULE_SIG_ALL
734MODSECKEY = ./signing_key.priv 750MODSECKEY = ./signing_key.priv