Magellan Linux

Contents of /alx-src/tags/kernel26-2.6.12-alx-r9/scripts/Makefile.modinst

Parent Directory Parent Directory | Revision Log Revision Log


Revision 630 - (show annotations) (download)
Wed Mar 4 11:03:09 2009 UTC (15 years, 3 months ago) by niro
File size: 825 byte(s)
Tag kernel26-2.6.12-alx-r9
1 # ==========================================================================
2 # Installing modules
3 # ==========================================================================
4
5 .PHONY: __modinst
6 __modinst:
7
8 include scripts/Makefile.lib
9
10 #
11
12 __modules := $(sort $(shell grep -h '\.ko' /dev/null $(wildcard $(MODVERDIR)/*.mod)))
13 modules := $(patsubst %.o,%.ko,$(wildcard $(__modules:.ko=.o)))
14
15 .PHONY: $(modules)
16 __modinst: $(modules)
17 @:
18
19 quiet_cmd_modules_install = INSTALL $@
20 cmd_modules_install = mkdir -p $(2); cp $@ $(2)
21
22 # Modules built outside the kernel source tree go into extra by default
23 INSTALL_MOD_DIR ?= extra
24 ext-mod-dir = $(INSTALL_MOD_DIR)$(subst $(KBUILD_EXTMOD),,$(@D))
25
26 modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D))
27
28 $(modules):
29 $(call cmd,modules_install,$(MODLIB)/$(modinst_dir))