aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 1b2fd97f503a..d810d6cb4d08 100644
--- a/Makefile
+++ b/Makefile
@@ -512,6 +512,23 @@ export INSTALL_PATH ?= /boot
512MODLIB = $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE) 512MODLIB = $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE)
513export MODLIB 513export MODLIB
514 514
515#
516# INSTALL_MOD_STRIP, if defined, will cause modules to be
517# stripped after they are installed. If INSTALL_MOD_STRIP is '1', then
518# the default option --strip-debug will be used. Otherwise,
519# INSTALL_MOD_STRIP will used as the options to the strip command.
520
521ifdef INSTALL_MOD_STRIP
522ifeq ($(INSTALL_MOD_STRIP),1)
523mod_strip_cmd = $STRIP) --strip-debug
524else
525mod_strip_cmd = $(STRIP) $(INSTALL_MOD_STRIP)
526endif # INSTALL_MOD_STRIP=1
527else
528mod_strip_cmd = true
529endif # INSTALL_MOD_STRIP
530export mod_strip_cmd
531
515 532
516ifeq ($(KBUILD_EXTMOD),) 533ifeq ($(KBUILD_EXTMOD),)
517core-y += kernel/ mm/ fs/ ipc/ security/ crypto/ block/ 534core-y += kernel/ mm/ fs/ ipc/ security/ crypto/ block/