add line for en0; comment that it has to be downloaded before ifconfig
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 25 Oct 1988 04:48:03 +0000 (20:48 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 25 Oct 1988 04:48:03 +0000 (20:48 -0800)
SCCS-vsn: etc/netstart 5.3

usr/src/etc/netstart

index ac7c3fd..0a9be93 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/sh -
 
 #!/bin/sh -
 
-#      @(#)netstart    5.2 (Berkeley) %G%
+#      @(#)netstart    5.3 (Berkeley) %G%
 routedflags=-q
 rwhod=NO
 
 routedflags=-q
 rwhod=NO
 
@@ -8,9 +8,14 @@ rwhod=NO
 # my-netmask is specified in /etc/networks
 #
 hostname=myname.my.domain
 # my-netmask is specified in /etc/networks
 #
 hostname=myname.my.domain
+
 ifconfig imp0 inet $hostname
 ifconfig ace0 inet $hostname netmask my-netmask
 ifconfig lo0  inet localhost
 
 ifconfig imp0 inet $hostname
 ifconfig ace0 inet $hostname netmask my-netmask
 ifconfig lo0  inet localhost
 
+# for en enthernet interface, load microcode before ifconfig
+# /etc/enpload /dev/enp0ram /etc/enpcode       > /dev/console 2>&1
+ifconfig en0 inet $hostname netmask my-netmask
+
 route add $hostname localhost 0
 hostid $hostname
 route add $hostname localhost 0
 hostid $hostname