diff options
author | jkh <jkh@FreeBSD.org> | 1994-06-17 19:29:05 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-06-17 19:29:05 +0000 |
commit | f76be841841b5452f985c8d10ced269281fc62b2 (patch) | |
tree | 72c146186e112bfa0edc699fdf6d33d41156e383 /etc/netstart | |
parent | a74536731cdf8dea05c5a3ac8bb12dfc1b149124 (diff) | |
download | FreeBSD-src-f76be841841b5452f985c8d10ced269281fc62b2.zip FreeBSD-src-f76be841841b5452f985c8d10ced269281fc62b2.tar.gz |
Add entry for the new PCMCIA ethernet adapter code (ze0).
Diffstat (limited to 'etc/netstart')
-rwxr-xr-x | etc/netstart | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/etc/netstart b/etc/netstart index eca6345..a953943 100755 --- a/etc/netstart +++ b/etc/netstart @@ -1,6 +1,6 @@ #!/bin/sh - # -# $Id: netstart,v 1.10 1994/04/18 11:00:44 rgrimes Exp $ +# $Id: netstart,v 1.11 1994/05/04 08:59:52 rgrimes Exp $ # From: @(#)netstart 5.9 (Berkeley) 3/30/91 routedflags=-q @@ -32,6 +32,9 @@ fi if [ -e /etc/hostname.is0 ]; then ifconfig is0 `cat /etc/hostname.is0` fi +if [ -e /etc/hostname.ze0 ]; then + ifconfig ze0 `cat /etc/hostname.ze0` +fi # set the address for the loopback interface ifconfig lo0 inet localhost |