diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -605,19 +605,19 @@ MODLIB = $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE) | |||
605 | export MODLIB | 605 | export MODLIB |
606 | 606 | ||
607 | # | 607 | # |
608 | # INSTALL_MOD_STRIP, if defined, will cause modules to be | 608 | # INSTALL_MOD_STRIP, if defined, will cause modules to be stripped while |
609 | # stripped after they are installed. If INSTALL_MOD_STRIP is '1', then | 609 | # they get installed. If INSTALL_MOD_STRIP is '1', then the default |
610 | # the default option --strip-debug will be used. Otherwise, | 610 | # options (see below) will be used. Otherwise, INSTALL_MOD_STRIP will |
611 | # INSTALL_MOD_STRIP will used as the options to the strip command. | 611 | # be used as the option(s) to the objcopy command. |
612 | |||
613 | ifdef INSTALL_MOD_STRIP | 612 | ifdef INSTALL_MOD_STRIP |
614 | ifeq ($(INSTALL_MOD_STRIP),1) | 613 | ifeq ($(INSTALL_MOD_STRIP),1) |
615 | mod_strip_cmd = $(STRIP) --strip-debug | 614 | mod_strip_cmd = $(OBJCOPY) --strip-debug --strip-symbols \ |
615 | $(srctree)/scripts/strip-symbols --wildcard | ||
616 | else | 616 | else |
617 | mod_strip_cmd = $(STRIP) $(INSTALL_MOD_STRIP) | 617 | mod_strip_cmd = $(OBJCOPY) $(INSTALL_MOD_STRIP) |
618 | endif # INSTALL_MOD_STRIP=1 | 618 | endif # INSTALL_MOD_STRIP=1 |
619 | else | 619 | else |
620 | mod_strip_cmd = true | 620 | mod_strip_cmd = false |
621 | endif # INSTALL_MOD_STRIP | 621 | endif # INSTALL_MOD_STRIP |
622 | export mod_strip_cmd | 622 | export mod_strip_cmd |
623 | 623 | ||