2009-05-15 10:36:04 +00:00
|
|
|
--- a/Makefile
|
|
|
|
+++ b/Makefile
|
2008-05-19 13:44:11 +00:00
|
|
|
@@ -428,18 +428,9 @@ else
|
2006-10-10 20:33:55 +00:00
|
|
|
depmod_opts := -b $(INSTALL_MOD_PATH) -r
|
|
|
|
endif
|
|
|
|
.PHONY: _modinst_post
|
|
|
|
-_modinst_post: _modinst_post_pcmcia
|
|
|
|
+_modinst_post:
|
|
|
|
if [ -r System.map ]; then $(DEPMOD) -ae -F System.map $(depmod_opts) $(KERNELRELEASE); fi
|
2008-01-06 19:28:07 +00:00
|
|
|
|
2006-10-10 20:33:55 +00:00
|
|
|
-# Backwards compatibilty symlinks for people still using old versions
|
|
|
|
-# of pcmcia-cs with hard coded pathnames on insmod. Remove
|
|
|
|
-# _modinst_post_pcmcia for kernel 2.4.1.
|
|
|
|
-.PHONY: _modinst_post_pcmcia
|
|
|
|
-_modinst_post_pcmcia:
|
|
|
|
- cd $(MODLIB); \
|
|
|
|
- mkdir -p pcmcia; \
|
|
|
|
- find kernel -path '*/pcmcia/*' -name '*.o' | xargs -i -r ln -sf ../{} pcmcia
|
2008-01-06 19:28:07 +00:00
|
|
|
-
|
2006-10-10 20:33:55 +00:00
|
|
|
.PHONY: $(patsubst %, _modinst_%, $(SUBDIRS))
|
|
|
|
$(patsubst %, _modinst_%, $(SUBDIRS)) :
|
2008-01-06 19:28:07 +00:00
|
|
|
$(MAKE) -C $(patsubst _modinst_%, %, $@) modules_install
|