diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2010-07-05 22:20:23 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2010-07-05 22:20:23 +0000 |
commit | 90e5cb54ee8b88d45a86811b794a4681c68dc62b (patch) | |
tree | 03dacd01e14da0e1e6098c1eae5aceea23a324db /sys/kern/exec_conf.c | |
parent | 0663a4737a4e7ae57ba0218fb2d60afe51c07aa9 (diff) |
remove compat_bsdos support
Diffstat (limited to 'sys/kern/exec_conf.c')
-rw-r--r-- | sys/kern/exec_conf.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/sys/kern/exec_conf.c b/sys/kern/exec_conf.c index a25f1832285..705b5f6b40e 100644 --- a/sys/kern/exec_conf.c +++ b/sys/kern/exec_conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exec_conf.c,v 1.24 2010/07/02 19:57:15 tedu Exp $ */ +/* $OpenBSD: exec_conf.c,v 1.25 2010/07/05 22:20:22 tedu Exp $ */ /* $NetBSD: exec_conf.c,v 1.16 1995/12/09 05:34:47 cgd Exp $ */ /* @@ -51,10 +51,6 @@ #include <compat/linux/linux_exec.h> #endif -#ifdef COMPAT_BSDOS -#include <compat/bsdos/bsdos_exec.h> -#endif - #ifdef COMPAT_FREEBSD #include <compat/freebsd/freebsd_exec.h> #endif @@ -64,7 +60,7 @@ #endif extern struct emul emul_native, emul_elf32, emul_elf64, emul_aout, - emul_bsdos, emul_freebsd_aout, emul_freebsd_elf, + emul_freebsd_aout, emul_freebsd_elf, emul_linux_elf, emul_linux_aout, emul_netbsd_elf64, emul_sunos, emul_svr4; @@ -90,9 +86,6 @@ struct execsw execsw[] = { { LINUX_AOUT_HDR_SIZE, exec_linux_aout_makecmds, &emul_linux_aout }, /* linux a.out */ { sizeof(Elf32_Ehdr), exec_linux_elf32_makecmds, &emul_linux_elf }, #endif -#ifdef COMPAT_BSDOS - { BSDOS_AOUT_HDR_SIZE, exec_bsdos_aout_makecmds, &emul_bsdos }, /* bsdos */ -#endif #ifdef COMPAT_FREEBSD { FREEBSD_AOUT_HDR_SIZE, exec_freebsd_aout_makecmds, &emul_freebsd_aout }, /* freebsd */ { sizeof(Elf32_Ehdr), exec_freebsd_elf32_makecmds, &emul_freebsd_elf }, |