diff -Naur old/INSTALL new/INSTALL
--- old/INSTALL	2003-08-31 03:26:47.000000000 +0200
+++ new/INSTALL	2003-08-31 21:37:33.000000000 +0200
@@ -23,13 +23,9 @@
   with the init script, then init will spawn 8 getty's and you'll be able to
   login your GNU/KFreeBSD system.
 - We don't have debian's sysvinit yet, our sysvinit is an unconfigured
-  native version that doesn't do all the tasks. everytime you boot,
-  you'll have to do these manualy:
-  - setup the network
-	ifconfig interface ip_addr
-	ifconfig lo0 127.0.0.1
-  - if you have a gateway, add its route. eg:
-	route add -net 0.0.0.0 mygateway
+  native version that doesn't do all the tasks. Modify /root/setup_net.
+  Everytime you boot, you'll have to do these manually:
+  - /root/setup_net
   - start|stop the daemons, eg: /etc/init.d/inetutils-inetd start|stop
 - Some more glitches:
   - /usr/include is unhappy. copy machine.i386 from my glibc patch dir
diff -Naur old/setup_net new/setup_net
--- old/setup_net	1970-01-01 01:00:00.000000000 +0100
+++ new/setup_net	2003-08-31 21:31:12.000000000 +0200
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+IP=192.168.1.20
+GATEWAY=192.168.1.1
+
+ifconfig ed0 inet $IP
+ifconfig lo0 inet 127.0.0.1
+if test x$GATEWAY != x
+then
+    route add -net 0.0.0.0 $GATEWAY
+fi
+if test -e /etc/hostname
+then
+    hostname -F /etc/hostname
+fi
+
