diff options
author | Peter Wemm <peter@FreeBSD.org> | 1998-10-16 03:55:01 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 1998-10-16 03:55:01 +0000 |
commit | aa855a598d9a933daa5facd559803ef280326028 (patch) | |
tree | 658058677a1163782b542369703538ecadfd07ba /sys/kern/imgact_aout.c | |
parent | df481e793ff16f23517c70c8ff42884d16ca7fb9 (diff) |
*gulp*. Jordan specifically OK'ed this..
This is the bulk of the support for doing kld modules. Two linker_sets
were replaced by SYSINIT()'s. VFS's and exec handlers are self registered.
kld is now a superset of lkm. I have converted most of them, they will
follow as a seperate commit as samples.
This all still works as a static a.out kernel using LKM's.
Notes
Notes:
svn path=/head/; revision=40435
Diffstat (limited to 'sys/kern/imgact_aout.c')
-rw-r--r-- | sys/kern/imgact_aout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/imgact_aout.c b/sys/kern/imgact_aout.c index 7f1d6ec058ff..446946e8c58f 100644 --- a/sys/kern/imgact_aout.c +++ b/sys/kern/imgact_aout.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: imgact_aout.c,v 1.41 1998/07/15 05:00:26 bde Exp $ + * $Id: imgact_aout.c,v 1.42 1998/09/14 05:36:49 jdp Exp $ */ #include <sys/param.h> @@ -303,4 +303,4 @@ out: * correct directive to use. */ static const struct execsw aout_execsw = { exec_aout_imgact, "a.out" }; -TEXT_SET(execsw_set, aout_execsw); +EXEC_SET(aout, aout_execsw); |