summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/exec_conf.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/kern/exec_conf.c b/sys/kern/exec_conf.c
index 0153a4e3c60..0af97b9e16b 100644
--- a/sys/kern/exec_conf.c
+++ b/sys/kern/exec_conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: exec_conf.c,v 1.11 2001/09/19 13:28:43 art Exp $ */
+/* $OpenBSD: exec_conf.c,v 1.12 2001/11/14 14:37:22 hugh Exp $ */
/* $NetBSD: exec_conf.c,v 1.16 1995/12/09 05:34:47 cgd Exp $ */
/*
@@ -71,6 +71,10 @@
#include <compat/m68k4k/m68k4k_exec.h>
#endif
+#ifdef COMPAT_VAX1K
+#include <compat/vax1k/vax1k_exec.h>
+#endif
+
struct execsw execsw[] = {
#ifdef LKM
{ 0, NULL, }, /* entries for LKMs */
@@ -111,6 +115,9 @@ struct execsw execsw[] = {
#ifdef COMPAT_M68K4K
{ sizeof(struct exec), exec_m68k4k_makecmds, }, /* m68k4k a.out */
#endif
+#ifdef COMPAT_VAX1K
+ { sizeof(struct exec), exec_vax1k_makecmds, }, /* vax1k a.out */
+#endif
};
int nexecs = (sizeof execsw / sizeof(*execsw));
int exec_maxhdrsz;