summaryrefslogtreecommitdiff
path: root/scripts/Makefile.modinst
AgeCommit message (Collapse)Author
2003-02-17kbuild: Fix non-verbose make modules_install outputRusty Russell
2003-02-16kbuild: Fix modules_install w/o modules errorKai Germaschewski
I fixed scripts/Makefile.modpost to handle CONFIG_MODULES but no modules selected, but forgot scripts/Makefile.modinst (pointed out by akpm)
2003-02-14kbuild: Use list of modules for "make modules_install"Kai Germaschewski
Since we rely on our list of all modules for building anyway, we can as well use it to install the modules. So we don't need to descend in that step anymore, speeding it up, though it's not a particularly performance-critical area.
2002-12-13[PATCH] Revert depmod and hierarchy changesRusty Russell
module-init-tools 0.9 and newer supply a replacement depmod, so it's safe to run again. Also, some external programs like PCMCIA and mkinitrd really want the directory hierarchy in /lib/modules back again: it makes no difference to the tools (since 0.9), so revert it.
2002-12-04kbuild: Build modules as '.ko'Kai Germaschewski
2002-11-10[PATCH] In-kernel Module LoaderRusty Russell
This is an implementation of the in-kernel module loader extending the try_inc_mod_count() primitive and making its use compulsory. This has the benifit of simplicity, and similarity to the existing scheme. To reduce the cost of the constant increments and decrements, reference counters are lockless and per-cpu. Eliminated (coming in following patches): o Modversions o Module parameters o kallsyms o EXPORT_SYMBOL_GPL and MODULE_LICENCE checks o DEVICE_TABLE support. New features: o Typesafe symbol_get/symbol_put o Single "insert this module" syscall interface allows trivial userspace. o Raceless loading and unloading You will need the trivial replacement module utilities from: http://ozlabs.org/~rusty/module-init-tools-0.6.tar.gz
2002-10-27kbuild: Use Makefile.lib for modversion and modules_installSam Ravnborg
Most definitions required were present in Makefile.lib, so delete the definitions and include Makefile.lib.
2002-10-25kbuild: Removed unused definitionsSam Ravnborg
o Deleted subdir-n and subdir- handling in Makefile.build o Deleted all host-progs related stuff in Makfile.modver o In Makefile.modver also deleted everything related to composite objects o Fixed an error when deleting a .ver file + .hdepend and then do make - filter-out in Makefile.modver was faulty
2002-10-23kbuild: Switch "make modules_install" to fast mode ;)Kai Germaschewski
Use the same way we came up with for "make clean" for "make modules_install", gaining a nice speed-up. Also, some cosmetics for scripts/Makefile.clean
2002-10-23kbuild: Split Rules.makeKai Germaschewski
Rules.make is used in 4 phases, o generate modversions o build o install modules o clean split out the code specific to the phase and move it into scripts/Makefile.<phase>