kbuild: merge scripts/Makefile.modsign to scripts/Makefile.modinst
[platform/kernel/linux-rpi.git] / scripts / Makefile.modinst
1 # SPDX-License-Identifier: GPL-2.0
2 # ==========================================================================
3 # Installing modules
4 # ==========================================================================
5
6 PHONY := __modinst
7 __modinst:
8
9 include include/config/auto.conf
10 include $(srctree)/scripts/Kbuild.include
11
12 modules := $(sort $(shell cat $(MODORDER)))
13
14 ifeq ($(KBUILD_EXTMOD),)
15 dst := $(MODLIB)/kernel
16 else
17 INSTALL_MOD_DIR ?= extra
18 dst := $(MODLIB)/$(INSTALL_MOD_DIR)
19 endif
20
21 suffix-y                                :=
22 suffix-$(CONFIG_MODULE_COMPRESS_GZIP)   := .gz
23 suffix-$(CONFIG_MODULE_COMPRESS_XZ)     := .xz
24
25 modules := $(patsubst $(extmod_prefix)%, $(dst)/%$(suffix-y), $(modules))
26
27 __modinst: $(modules)
28         @:
29
30 quiet_cmd_none =
31       cmd_none = :
32
33 #
34 # Installation
35 #
36 quiet_cmd_install = INSTALL $@
37       cmd_install = mkdir -p $(dir $@); cp $< $@
38
39 # Strip
40 #
41 # INSTALL_MOD_STRIP, if defined, will cause modules to be stripped after they
42 # are installed. If INSTALL_MOD_STRIP is '1', then the default option
43 # --strip-debug will be used. Otherwise, INSTALL_MOD_STRIP value will be used
44 # as the options to the strip command.
45 ifdef INSTALL_MOD_STRIP
46
47 ifeq ($(INSTALL_MOD_STRIP),1)
48 strip-option := --strip-debug
49 else
50 strip-option := $(INSTALL_MOD_STRIP)
51 endif
52
53 quiet_cmd_strip = STRIP   $@
54       cmd_strip = $(STRIP) $(strip-option) $@
55
56 else
57
58 quiet_cmd_strip =
59       cmd_strip = :
60
61 endif
62
63 #
64 # Signing
65 # Don't stop modules_install even if we can't sign external modules.
66 #
67 ifeq ($(CONFIG_MODULE_SIG_ALL),y)
68 quiet_cmd_sign = SIGN    $@
69 $(eval $(call config_filename,MODULE_SIG_KEY))
70       cmd_sign = scripts/sign-file $(CONFIG_MODULE_SIG_HASH) $(MODULE_SIG_KEY_SRCPREFIX)$(CONFIG_MODULE_SIG_KEY) certs/signing_key.x509 $@ \
71                  $(if $(KBUILD_EXTMOD),|| true)
72 else
73 quiet_cmd_sign :=
74       cmd_sign := :
75 endif
76
77 ifeq ($(modules_sign_only),)
78
79 $(dst)/%.ko: $(extmod_prefix)%.ko FORCE
80         $(call cmd,install)
81         $(call cmd,strip)
82         $(call cmd,sign)
83
84 else
85
86 $(dst)/%.ko: FORCE
87         $(call cmd,sign)
88
89 endif
90
91 #
92 # Compression
93 #
94 quiet_cmd_gzip = GZIP    $@
95       cmd_gzip = $(KGZIP) -n -f $<
96 quiet_cmd_xz = XZ      $@
97       cmd_xz = $(XZ) --lzma2=dict=2MiB -f $<
98
99 $(dst)/%.ko.gz: $(dst)/%.ko FORCE
100         $(call cmd,gzip)
101
102 $(dst)/%.ko.xz: $(dst)/%.ko FORCE
103         $(call cmd,xz)
104
105 PHONY += FORCE
106 FORCE:
107
108 .PHONY: $(PHONY)