summaryrefslogtreecommitdiff
path: root/sys/arch/macppc
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2001-09-27 17:30:57 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2001-09-27 17:30:57 +0000
commit13527fa356aaa4a28ed573a411ec715a61c32ff0 (patch)
tree6eca4408febc8f73da4fed7082cb2a28e2838303 /sys/arch/macppc
parentdc9a7e6554cd4bc5bc94847f1f9d38b3b7722a60 (diff)
When zs is fully working, it should be tty00 for macppc.
Diffstat (limited to 'sys/arch/macppc')
-rw-r--r--sys/arch/macppc/macppc/conf.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/arch/macppc/macppc/conf.c b/sys/arch/macppc/macppc/conf.c
index a381b49043a..c6e1956df09 100644
--- a/sys/arch/macppc/macppc/conf.c
+++ b/sys/arch/macppc/macppc/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.1 2001/09/01 15:44:20 drahn Exp $ */
+/* $OpenBSD: conf.c,v 1.2 2001/09/27 17:30:56 drahn Exp $ */
/*
* Copyright (c) 1997 Per Fogelstrom
@@ -97,8 +97,9 @@ cdev_decl(pts);
#define ptcioctl ptyioctl
cdev_decl(ptc);
cdev_decl(log);
-#include "com.h"
-cdev_decl(com);
+
+#include "zstty.h"
+cdev_decl(zs);
#include "ofcons.h"
cdev_decl(ofc);
@@ -197,7 +198,7 @@ struct cdevsw cdevsw[] = {
cdev_tty_init(NPTY,pts), /* 4: pseudo-tty slave */
cdev_ptc_init(NPTY,ptc), /* 5: pseudo-tty master */
cdev_log_init(1,log), /* 6: /dev/klog */
- cdev_tty_init(NCOM,com), /* 7: Serial ports */
+ cdev_tty_init(NZSTTY,zs), /* 7: mac onboard serial ports */
cdev_disk_init(NSD,sd), /* 8: SCSI disk */
cdev_disk_init(NCD,cd), /* 9: SCSI CD-ROM */
cdev_notdef(), /* 10: SCSI changer */