]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - scripts/Makefile.modinst
KVM: PPC: Use preregistered memory API to access TCE list
[mirror_ubuntu-zesty-kernel.git] / scripts / Makefile.modinst
CommitLineData
1da177e4
LT
1# ==========================================================================
2# Installing modules
3# ==========================================================================
4
4f193362 5PHONY := __modinst
1da177e4
LT
6__modinst:
7
8ec4b4ff 8include scripts/Kbuild.include
1da177e4
LT
9
10#
11
ef591a55 12__modules := $(sort $(shell grep -h '\.ko$$' /dev/null $(wildcard $(MODVERDIR)/*.mod)))
1da177e4
LT
13modules := $(patsubst %.o,%.ko,$(wildcard $(__modules:.ko=.o)))
14
4f193362 15PHONY += $(modules)
1da177e4
LT
16__modinst: $(modules)
17 @:
18
f6a79af8 19# Don't stop modules_install if we can't sign external modules.
1da177e4 20quiet_cmd_modules_install = INSTALL $@
40e42f6a
BJ
21 cmd_modules_install = \
22 mkdir -p $(2) ; \
23 cp $@ $(2) ; \
24 $(mod_strip_cmd) $(2)/$(notdir $@) ; \
77100117 25 if (echo "$(2)/$(notdir $@)" | egrep -q "\/drivers\/staging\/") && \
f4798876
SF
26 [ -f $(srctree)/drivers/staging/signature-inclusion ] && \
27 (! egrep -x "$(notdir $@)" $(srctree)/drivers/staging/signature-inclusion) ; \
77100117
TG
28 then echo Not signing "$(2)/$(notdir $@)"; \
29 else $(mod_sign_cmd) $(2)/$(notdir $@) $(patsubst %,|| true,$(KBUILD_EXTMOD)) && \
30 $(mod_compress_cmd) $(2)/$(notdir $@); fi
1da177e4
LT
31
32# Modules built outside the kernel source tree go into extra by default
33INSTALL_MOD_DIR ?= extra
9b213118 34ext-mod-dir = $(INSTALL_MOD_DIR)$(subst $(patsubst %/,%,$(KBUILD_EXTMOD)),,$(@D))
1da177e4
LT
35
36modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D))
37
38$(modules):
39 $(call cmd,modules_install,$(MODLIB)/$(modinst_dir))
4f193362
PS
40
41
42# Declare the contents of the .PHONY variable as phony. We keep that
8740e687 43# information in a variable so we can use it in if_changed and friends.
4f193362
PS
44
45.PHONY: $(PHONY)