summaryrefslogtreecommitdiff
path: root/sys/arch/alpha
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-08-24 05:30:08 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-08-24 05:30:08 +0000
commit85ff07cfeea8faa95830d01f3b90dd66cce13630 (patch)
tree721564da90df32c332c8e5b86b1273055008a94b /sys/arch/alpha
parent5e7341524ae90c8ac1f9113ba9dcff4d68cc1758 (diff)
Add support for /dev/ksyms to arch-specific files
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r--sys/arch/alpha/alpha/conf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/alpha/alpha/conf.c b/sys/arch/alpha/alpha/conf.c
index 47ea92a1da5..09baf9f7af1 100644
--- a/sys/arch/alpha/alpha/conf.c
+++ b/sys/arch/alpha/alpha/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.16 1998/07/07 06:55:54 deraadt Exp $ */
+/* $OpenBSD: conf.c,v 1.17 1998/08/24 05:29:46 millert Exp $ */
/* $NetBSD: conf.c,v 1.16 1996/10/18 21:26:57 cgd Exp $ */
/*-
@@ -124,6 +124,8 @@ cdev_decl(wd);
cdev_decl(acd);
#include "cy.h"
cdev_decl(cy);
+#include "ksyms.h"
+cdev_decl(ksyms);
struct cdevsw cdevsw[] =
{
@@ -166,6 +168,7 @@ struct cdevsw cdevsw[] =
cdev_disk_init(NWDC,wd), /* 36: ST506/ESDI/IDE disk */
cdev_disk_init(NACD,acd), /* 37: ATAPI CD-ROM */
cdev_tty_init(NCY,cy), /* 38: Cyclom serial port */
+ cdev_ksyms_init(NKSYMS,ksyms), /* 39: Kernel symbols device */
};
int nchrdev = sizeof (cdevsw) / sizeof (cdevsw[0]);