From 74db02785d932aba621f7ed5fa6bd4ab452847a6 Mon Sep 17 00:00:00 2001 From: phk Date: Sun, 8 Aug 1999 19:28:59 +0000 Subject: Make the pty driver as close to a cloning device as we can get for now, we create the pty on the fly when it is first opened. If you run out of ptys now, just MAKEDEV some more. This also demonstrate the use of dev_t->si_tty_tty and dev_t->si_drv1 in a device driver. --- sys/amd64/conf/GENERIC | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/amd64') diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC index d1a0e40..935cd4f 100644 --- a/sys/amd64/conf/GENERIC +++ b/sys/amd64/conf/GENERIC @@ -15,7 +15,7 @@ # device lines is also present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # -# $Id: GENERIC,v 1.178 1999/07/25 04:32:43 wpaul Exp $ +# $Id: GENERIC,v 1.179 1999/08/07 01:42:08 jkh Exp $ machine i386 cpu I386_CPU @@ -196,7 +196,7 @@ pseudo-device ether # Ethernet support pseudo-device sl 1 # Kernel SLIP pseudo-device ppp 1 # Kernel PPP pseudo-device tun 1 # Packet tunnel, for ppp(1) -pseudo-device pty 16 # Pseudo-ttys (telnet etc) +pseudo-device pty # Pseudo-ttys (telnet etc) pseudo-device gzip # Exec gzipped a.out's # The `bpf' pseudo-device enables the Berkeley Packet Filter. -- cgit v1.1