aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/link_elf.c
Commit message (Expand)AuthorAgeFilesLines
* Instead of nlist.h and link.h, use sys/nlist_aout.h and sys/link_elf.hPeter Wemm2002-08-221-2/+2
* In order to better support flexible and extensible access control,Robert Watson2002-08-151-5/+10
* Don't use the symbol name to lookup the symbol value when we can useMarcel Moolenaar2002-04-251-8/+55
* Add function link_elf_get_gp(), specific to ia64 for now, to getMarcel Moolenaar2002-04-211-0/+19
* Simple p_ucred -> td_ucred changes to start using the per-thread ucredJohn Baldwin2002-02-271-7/+6
* Fix a number of misspellings of "dependency" and "dependencies" inIan Dowse2001-11-161-1/+1
* Add the sysctl "kern.function_list", which currently exports allBrian Feldman2001-10-301-0/+23
* Also, machine/profile.h should be necessary for the function prototypeBrian Feldman2001-10-301-0/+3
* Use kmupetext() for ELF KLDs to allow for increased text segment size.Brian Feldman2001-10-301-0/+6
* The ia64 kernel is now linked dynamically so parse its _DYNAMIC structure.Doug Rabson2001-09-151-4/+0
* KSE Milestone 2Julian Elischer2001-09-121-9/+10
* Fix a warning. l_name is managed by us and is malloc/free'ed.Peter Wemm2001-09-101-1/+1
* Unindent a if (1) { that was left behind in the last commit.Peter Wemm2001-09-031-46/+44
* Argh. Make the ia64 kernel work in all situations. For some reason,Peter Wemm2001-09-031-4/+3
* Fix some of the GDB linkage setup. The l_name member of the gdb linkageBill Paul2001-08-101-2/+14
* Previously, the ELF linker would always just store the pointer to aBrian Feldman2001-08-061-1/+5
* Use a machine dependent type, Elf_Hashelt, for the elements of the elfJake Burkholder2001-07-311-5/+5
* With Alfred's permission, remove vm_mtx in favor of a fine-grained approachMatthew Dillon2001-07-041-8/+2
* With this commit, I hereby pronounce gensetdefs past its use-by date.Peter Wemm2001-06-131-0/+61
* Include sys/mutex.h to silence a warning.Dima Dorfman2001-06-031-0/+1
* Introduce a global lock for the vm subsystem (vm_mtx).Alfred Perlstein2001-05-191-0/+8
* Undo part of the tangle of having sys/lock.h and sys/mutex.h included inMark Murray2001-05-011-2/+4
* Make this compile in a.out mode. link.h has extra dependencies for a.out.Peter Wemm2001-02-251-0/+3
* Convert more malloc+bzero to malloc+M_ZERO.David Malone2000-12-081-2/+1
* Correct a warning where the r_debug_state() dummy function used to triggerJohn Baldwin2000-10-061-3/+6
* Don't support dynamic linking on ia64 for now - the tools can't cope.Doug Rabson2000-09-291-0/+6
* Ignore ELF files with 'interpreter' section because KLDs doesn't contain it.Boris Popov2000-09-061-0/+5
* Move the truncation code out of vn_open and into the open system callKirk McKusick2000-07-041-2/+3
* Remove unneeded #include <vm/vm_zone.h>Poul-Henning Kamp2000-04-301-1/+0
* First round implementation of a fine grain enhanced module to modulePeter Wemm2000-04-291-77/+55
* Do not use uprintf() for link time error messages. This has unpleasantPeter Wemm2000-04-291-4/+4
* * Rewrite to use kobj(9) instead of hard-coded function tables.Doug Rabson2000-04-241-137/+224
* Fixed a cast of a pointer to an integer of a possibly different size.Bruce Evans1999-12-241-3/+3
* Introduce NDFREE (and remove VOP_ABORTOP)Eivind Eklund1999-12-151-2/+2
* Fix an embarresing mistake in the kld symbol lookup for DDB. It shouldPeter Wemm1999-11-281-4/+6
* useracc() the prequel:Poul-Henning Kamp1999-10-291-1/+0
* Trim unused options (or #ifdef for undoc options).Peter Wemm1999-10-111-0/+4
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
* Cast pointers to uintptr_t instead of casting them to u_long, and/or viceBruce Evans1999-08-241-3/+3
* Use KERNBASE for the load address of the kernel rather than magic constantsPeter Wemm1999-05-081-7/+2
* Cast to `const char *' instead of to c_caddr_t. This is part ofBruce Evans1999-01-291-5/+5
* Fix warnings in preparation for adding -Wall -Wcast-qual to theMatthew Dillon1999-01-281-2/+2
* Fix warnings in preparation for adding -Wall -Wcast-qual to theMatthew Dillon1999-01-271-3/+3
* Fix warnings in preparation for adding -Wall -Wcast-qual to theMatthew Dillon1999-01-271-12/+12
* Don't try to call SYSUNINIT functions if there was a link error.Doug Rabson1999-01-251-1/+5
* When loading something that has undefined symbols, it would be helpful toPeter Wemm1998-12-311-5/+13
* Don't put aggregate structs 4K large on the kernel stack, especially whenPeter Wemm1998-11-061-23/+30
* The handle for the kernel is common. With this fix, ELF kernels can loadPeter Wemm1998-11-041-11/+5
* Nitpicking and dusting performed on a train. Removes trivial warningsPoul-Henning Kamp1998-10-251-12/+1
* *gulp*. Jordan specifically OK'ed this..Peter Wemm1998-10-161-30/+41