forked from Minki/linux
8ec4b4ff1c
Kbuild.include is a placeholder for definitions originally present in both the top-level Makefile and scripts/Makefile.build. There were a slight difference in the filechk definition, so the most videly used version was kept and usr/Makefile was adopted for this syntax. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> ---
30 lines
827 B
Makefile
30 lines
827 B
Makefile
# ==========================================================================
|
|
# Installing modules
|
|
# ==========================================================================
|
|
|
|
.PHONY: __modinst
|
|
__modinst:
|
|
|
|
include scripts/Kbuild.include
|
|
|
|
#
|
|
|
|
__modules := $(sort $(shell grep -h '\.ko' /dev/null $(wildcard $(MODVERDIR)/*.mod)))
|
|
modules := $(patsubst %.o,%.ko,$(wildcard $(__modules:.ko=.o)))
|
|
|
|
.PHONY: $(modules)
|
|
__modinst: $(modules)
|
|
@:
|
|
|
|
quiet_cmd_modules_install = INSTALL $@
|
|
cmd_modules_install = mkdir -p $(2); cp $@ $(2)
|
|
|
|
# Modules built outside the kernel source tree go into extra by default
|
|
INSTALL_MOD_DIR ?= extra
|
|
ext-mod-dir = $(INSTALL_MOD_DIR)$(subst $(KBUILD_EXTMOD),,$(@D))
|
|
|
|
modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D))
|
|
|
|
$(modules):
|
|
$(call cmd,modules_install,$(MODLIB)/$(modinst_dir))
|