1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
$NetBSD: patch-aa,v 1.10 1999/11/12 14:40:04 hubertf Exp $
--- kppp/devices.h.orig Fri Mar 5 19:03:33 1999
+++ kppp/devices.h Fri Nov 12 15:35:08 1999
@@ -8,6 +8,25 @@
"/dev/cuaa2",
"/dev/cuaa3",
#else
+#ifdef __NetBSD__
+ "/dev/tty00", /* "normal" modem lines */
+ "/dev/tty01",
+ "/dev/tty02",
+ "/dev/tty03",
+ "/dev/dty00", /* Dial out devices */
+ "/dev/dty01",
+ "/dev/dty02",
+ "/dev/dty03",
+ "/dev/ttyU0", /* USB stuff modems */
+ "/dev/ttyU1",
+ "/dev/ttyU2",
+ "/dev/ttyU3",
+ "/dev/dtyU0", /* USB stuff, too (dial out device) */
+ "/dev/dtyU1",
+ "/dev/dtyU2",
+ "/dev/dtyU3",
+ "/dev/modem",
+#else /* !NetBSD */
"/dev/modem",
"/dev/cua0",
"/dev/cua1",
@@ -23,8 +42,9 @@
"/dev/ttyI1",
"/dev/ttyI2",
"/dev/ttyI3",
-#endif
-#endif
+#endif /* ISDNSUPPORT */
+#endif /* NetBSD */
+#endif /* FreeBSD */
0};
// default device number from the list above
|