summaryrefslogtreecommitdiffstats
path: root/include/module.h
Commit message (Collapse)AuthorAgeFilesLines
* add compiler header files from kernelSascha Hauer2008-08-131-1/+1
| | | | | | | Add include/linux/compiler*.h from Linux Kernel and remove old include/compiler.h Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* move several commands into extra filesSascha Hauer2008-08-131-0/+7
| | | | | | move false, true, help, insmod, lsmod, version into extra files Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Add big #ifdef CONFIG_MODULE around module.h to build architecturesSascha Hauer2007-10-111-5/+12
| | | | which do not have modules.
* __u_boot__symtab -> __usymtabSascha Hauer2007-10-071-5/+5
|
* CONFIG_MODULE -> CONFIG_MODULESSascha Hauer2007-10-041-1/+2
|
* Resolve the symbols using an extra section and only resolve explicitlySascha Hauer2007-10-011-0/+28
| | | | | | exported symbols. Using kallsyms for this purpose doesn't do it because kallsyms do not resolve variables. Also the symbol table gets quite big using kallsyms.
* Add module handling (mostly copied from Linux kernel and stripped downSascha Hauer2007-09-281-0/+39
for U-Boot)