diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-04-23 03:18:49 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-04-23 03:18:49 +0000 |
commit | bab8e641c447b3d9ca471c5fe1244b190c479b79 (patch) | |
tree | 02305661b621846c4ffbd092483cde299d6baf6b /etc/etc.svr4 | |
parent | ef66b20c1c38c380c7524dbe77f613dd418b23a9 (diff) |
sync with netbsd 960418
Diffstat (limited to 'etc/etc.svr4')
-rw-r--r-- | etc/etc.svr4/SVR4_MAKEDEV | 37 | ||||
-rw-r--r-- | etc/etc.svr4/netconfig | 13 |
2 files changed, 39 insertions, 11 deletions
diff --git a/etc/etc.svr4/SVR4_MAKEDEV b/etc/etc.svr4/SVR4_MAKEDEV index 9f64461ad54..8621e6e4b05 100644 --- a/etc/etc.svr4/SVR4_MAKEDEV +++ b/etc/etc.svr4/SVR4_MAKEDEV @@ -1,5 +1,5 @@ #!/bin/sh - -# $NetBSD: SVR4_MAKEDEV,v 1.2 1996/02/10 18:14:11 christos Exp $ +# $NetBSD: SVR4_MAKEDEV,v 1.3 1996/04/11 12:59:45 christos Exp $ # # Copyright (c) 1995 Christos Zoulas # All rights reserved. @@ -31,7 +31,10 @@ # Network: # udp UDP socket creation # tcp TCP socket creation -# ticotsord XXX: tcp for now +# rawip RAW socket creation +# ticlts UNIX datagram creation +# ticotsord UNIX stream creation (with orderly release) +# ticots UNIX stream creation # Various: # wabi Windows emulation; /dev/null for now # @@ -47,7 +50,7 @@ unit=`expr $i : '[a-z][a-z]*\([0-9][0-9]*\)'` case $i in all) - sh $0 tcp udp wabi ticotsord + sh SVR4_MAKEDEV tcp udp rawip ticlts ticotsord ticots wabi ;; tcp) mknod $i c 43 35 @@ -55,18 +58,40 @@ tcp) chmod 666 $i ;; + udp) mknod udp c 43 36 chown bin.bin $i chmod 666 $i ;; -wabi) - mknod $i c 3 2 # /dev/null + +rawip) + mknod $i c 43 37 + chown bin.bin $i + chmod 666 $i + ;; + +ticlts) + mknod $i c 43 38 chown bin.bin $i chmod 666 $i ;; + ticotsord) - mknod $i c 43 35 # /dev/tcp + mknod $i c 43 39 + chown bin.bin $i + chmod 666 $i + ;; + +ticots) + mknod $i c 43 40 + chown bin.bin $i + chmod 666 $i + ;; + + +wabi) + mknod $i c 3 2 # /dev/null chown bin.bin $i chmod 666 $i ;; diff --git a/etc/etc.svr4/netconfig b/etc/etc.svr4/netconfig index 21830244e3a..625c6da68c5 100644 --- a/etc/etc.svr4/netconfig +++ b/etc/etc.svr4/netconfig @@ -1,7 +1,10 @@ -# $NetBSD: netconfig,v 1.1 1995/07/02 06:29:49 christos Exp $ +# $NetBSD: netconfig,v 1.2 1996/04/11 12:59:47 christos Exp $ # SVR4 Network configuration file # -# service name fl family proto device library -udp tpi_clts v inet udp /dev/udp - -tcp tpi_cots_ord v inet tcp /dev/tcp - -ticotsord tpi_cots_ord v loopback - /dev/ticotsord straddr.so +# service name fl family proto device library +udp tpi_clts v inet udp /dev/udp - +tcp tpi_cots_ord v inet tcp /dev/tcp - +rawip tpi_raw - inet - /dev/rawip - +ticlts tpi_clts v loopback - /dev/ticlts straddr.so +ticotsord tpi_cots_ord v loopback - /dev/ticotsord straddr.so +ticots tpi_cots v loopback - /dev/ticots straddr.so |