Merge tag 'trace-v5.15-3' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt...
[linux-2.6-microblaze.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 suffix-$(CONFIG_MODULE_COMPRESS_ZSTD)   := .zst
25
26 modules := $(patsubst $(extmod_prefix)%, $(dst)/%$(suffix-y), $(modules))
27
28 __modinst: $(modules)
29         @:
30
31 quiet_cmd_none =
32       cmd_none = :
33
34 #
35 # Installation
36 #
37 quiet_cmd_install = INSTALL $@
38       cmd_install = mkdir -p $(dir $@); cp $< $@
39
40 # Strip
41 #
42 # INSTALL_MOD_STRIP, if defined, will cause modules to be stripped after they
43 # are installed. If INSTALL_MOD_STRIP is '1', then the default option
44 # --strip-debug will be used. Otherwise, INSTALL_MOD_STRIP value will be used
45 # as the options to the strip command.
46 ifdef INSTALL_MOD_STRIP
47
48 ifeq ($(INSTALL_MOD_STRIP),1)
49 strip-option := --strip-debug
50 else
51 strip-option := $(INSTALL_MOD_STRIP)
52 endif
53
54 quiet_cmd_strip = STRIP   $@
55       cmd_strip = $(STRIP) $(strip-option) $@
56
57 else
58
59 quiet_cmd_strip =
60       cmd_strip = :
61
62 endif
63
64 #
65 # Signing
66 # Don't stop modules_install even if we can't sign external modules.
67 #
68 ifeq ($(CONFIG_MODULE_SIG_ALL),y)
69 quiet_cmd_sign = SIGN    $@
70 $(eval $(call config_filename,MODULE_SIG_KEY))
71       cmd_sign = scripts/sign-file $(CONFIG_MODULE_SIG_HASH) $(MODULE_SIG_KEY_SRCPREFIX)$(CONFIG_MODULE_SIG_KEY) certs/signing_key.x509 $@ \
72                  $(if $(KBUILD_EXTMOD),|| true)
73 else
74 quiet_cmd_sign :=
75       cmd_sign := :
76 endif
77
78 ifeq ($(modules_sign_only),)
79
80 $(dst)/%.ko: $(extmod_prefix)%.ko FORCE
81         $(call cmd,install)
82         $(call cmd,strip)
83         $(call cmd,sign)
84
85 else
86
87 $(dst)/%.ko: FORCE
88         $(call cmd,sign)
89
90 endif
91
92 #
93 # Compression
94 #
95 quiet_cmd_gzip = GZIP    $@
96       cmd_gzip = $(KGZIP) -n -f $<
97 quiet_cmd_xz = XZ      $@
98       cmd_xz = $(XZ) --lzma2=dict=2MiB -f $<
99 quiet_cmd_zstd = ZSTD    $@
100       cmd_zstd = $(ZSTD) -T0 --rm -f -q $<
101
102 $(dst)/%.ko.gz: $(dst)/%.ko FORCE
103         $(call cmd,gzip)
104
105 $(dst)/%.ko.xz: $(dst)/%.ko FORCE
106         $(call cmd,xz)
107
108 $(dst)/%.ko.zst: $(dst)/%.ko FORCE
109         $(call cmd,zstd)
110
111 PHONY += FORCE
112 FORCE:
113
114 .PHONY: $(PHONY)