Linux Audio

Check our new training course

Loading...
v5.4
 1# SPDX-License-Identifier: GPL-2.0
 2# ==========================================================================
 3# Installing modules
 4# ==========================================================================
 5
 6PHONY := __modinst
 7__modinst:
 8
 9include scripts/Kbuild.include
10
11modules := $(sort $(shell cat $(if $(KBUILD_EXTMOD),$(KBUILD_EXTMOD)/)modules.order))
 
 
 
12
13PHONY += $(modules)
14__modinst: $(modules)
15	@:
16
17# Don't stop modules_install if we can't sign external modules.
18quiet_cmd_modules_install = INSTALL $@
19      cmd_modules_install = \
20    mkdir -p $(2) ; \
21    cp $@ $(2) ; \
22    $(mod_strip_cmd) $(2)/$(notdir $@) ; \
23    $(mod_sign_cmd) $(2)/$(notdir $@) $(patsubst %,|| true,$(KBUILD_EXTMOD)) ; \
24    $(mod_compress_cmd) $(2)/$(notdir $@)
25
26# Modules built outside the kernel source tree go into extra by default
27INSTALL_MOD_DIR ?= extra
28ext-mod-dir = $(INSTALL_MOD_DIR)$(subst $(patsubst %/,%,$(KBUILD_EXTMOD)),,$(@D))
29
30modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D))
31
32$(modules):
33	$(call cmd,modules_install,$(MODLIB)/$(modinst_dir))
 
 
 
 
34
35.PHONY: $(PHONY)
v3.1
 
 1# ==========================================================================
 2# Installing modules
 3# ==========================================================================
 4
 5PHONY := __modinst
 6__modinst:
 7
 8include scripts/Kbuild.include
 9
10#
11
12__modules := $(sort $(shell grep -h '\.ko' /dev/null $(wildcard $(MODVERDIR)/*.mod)))
13modules := $(patsubst %.o,%.ko,$(wildcard $(__modules:.ko=.o)))
14
15PHONY += $(modules)
16__modinst: $(modules)
17	@:
18
 
19quiet_cmd_modules_install = INSTALL $@
20      cmd_modules_install = mkdir -p $(2); cp $@ $(2) ; $(mod_strip_cmd) $(2)/$(notdir $@)
 
 
 
 
 
21
22# Modules built outside the kernel source tree go into extra by default
23INSTALL_MOD_DIR ?= extra
24ext-mod-dir = $(INSTALL_MOD_DIR)$(subst $(patsubst %/,%,$(KBUILD_EXTMOD)),,$(@D))
25
26modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D))
27
28$(modules):
29	$(call cmd,modules_install,$(MODLIB)/$(modinst_dir))
30
31
32# Declare the contents of the .PHONY variable as phony.  We keep that
33# information in a variable se we can use it in if_changed and friends.
34
35.PHONY: $(PHONY)