diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2011-06-27 03:27:08 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2011-06-27 03:27:08 +0000 |
commit | 0e2dec7808332fbf49fc5513c5d883ccb99def0d (patch) | |
tree | 0cf06c724ed3d71f4812bd10d1cb8596f5329f3f /sys/kern | |
parent | 49de6f8d6227a3cb7c733fb2b7ab574fab991912 (diff) |
remove compat_vax1k. no more 4.3bsd reno support. ok deraadt
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/exec_conf.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/sys/kern/exec_conf.c b/sys/kern/exec_conf.c index 9d67af0d89a..edcd052aa15 100644 --- a/sys/kern/exec_conf.c +++ b/sys/kern/exec_conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exec_conf.c,v 1.26 2011/04/05 12:50:15 guenther Exp $ */ +/* $OpenBSD: exec_conf.c,v 1.27 2011/06/27 03:27:07 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_VAX1K -#include <compat/vax1k/vax1k_exec.h> -#endif - extern struct emul emul_native, emul_elf32, emul_elf64, emul_aout, emul_freebsd_aout, emul_freebsd_elf, emul_linux_elf, emul_linux_aout, emul_netbsd_elf64, @@ -82,9 +78,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_VAX1K - { sizeof(struct exec), exec_vax1k_makecmds, &emul_native }, /* vax1k a.out */ -#endif #ifdef COMPAT_SVR4 { sizeof(Elf32_Ehdr), exec_elf32_makecmds, &emul_svr4 }, /* elf binaries */ #endif |