aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/subr_module.c
Commit message (Collapse)AuthorAgeFilesLines
* Use __FBSDID().David E. O'Brien2003-06-111-2/+3
| | | | Notes: svn path=/head/; revision=116182
* Preceed/preceeding are not english words. Use precede and preceding.Jeroen Ruigrok van der Werven2001-02-181-1/+1
| | | | Notes: svn path=/head/; revision=72645
* Trim unused options (or #ifdef for undoc options).Peter Wemm1999-10-111-1/+0
| | | | | | | Submitted by: phk Notes: svn path=/head/; revision=52128
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50477
* Align to sizeof(long) rather than sizeof(int32_t). It needs to bePeter Wemm1998-10-141-8/+8
| | | | | | | | long because this code is shared with the alpha. I hope the alpha can read 32 bit ints at 32 bit alignment (vs. 64 bit alignment). Notes: svn path=/head/; revision=40336
* Relocate a few extra addresses that are stored as physical addresses viaPeter Wemm1998-10-121-3/+7
| | | | | | | the boot loader. Notes: svn path=/head/; revision=40252
* Updates for alignment rounding. XXX this is highly machine dependent andPeter Wemm1998-10-091-15/+134
| | | | | | | | | | | | | | should probably be moved to i386/i386/link_machdep.c (and the same for the alpha). Implement "deleting" a preloaded module by destroying it's tags. This is a hack. We cannot reuse the data, it's been destroyed by relocation, statically initialized variables have been modified, etc. Note that to reclaim the load space is going to be more machine-dependent work. Implement a relocate hook for machdep.c to call so that the physical addresses get converted to the equivalent KVM addresses. Notes: svn path=/head/; revision=40157
* Kernel environment access, preloaded module lookup.Mike Smith1998-10-091-0/+144
Notes: svn path=/head/; revision=40090