summaryrefslogtreecommitdiff
path: root/sys/arch/i386/stand
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2000-05-30 22:00:25 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2000-05-30 22:00:25 +0000
commita9a1dc90d89bfed5380db439684b0ba497e6ec6c (patch)
tree3f35db8480cb4300ceb2dbe29754275043f965ba /sys/arch/i386/stand
parent74f1c0e7ac50e618d1b8fe339a9b0dd7c94c00a3 (diff)
aout_ldsym, increase boot minor version
Diffstat (limited to 'sys/arch/i386/stand')
-rw-r--r--sys/arch/i386/stand/boot/conf.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/i386/stand/boot/conf.c b/sys/arch/i386/stand/boot/conf.c
index 75b140e0cf4..a128981bdee 100644
--- a/sys/arch/i386/stand/boot/conf.c
+++ b/sys/arch/i386/stand/boot/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.13 1998/07/20 18:14:52 mickey Exp $ */
+/* $OpenBSD: conf.c,v 1.14 2000/05/30 22:00:24 mickey Exp $ */
/*
* Copyright (c) 1996 Michael Shalayeff
@@ -48,12 +48,12 @@
#include <dev/cons.h>
#include <lib/libsa/exec.h>
-const char version[] = "1.23";
-int debug;
+const char version[] = "1.24";
+int debug = 1;
const struct x_sw execsw[] = {
- { "aout", aout_probe, aout_load },
- { "", NULL, NULL },
+ { "aout", aout_probe, aout_load, aout_ldsym },
+ { "", NULL, NULL, NULL },
};
struct fs_ops file_system[] = {