#!/bin/sh
#
# system startup.

# set up the hostname
/bin/hostname uCsimm

# attach the interfaces
/sbin/ifattach
/sbin/ifattach \
--addr 192.168.1.200 \
--mask 255.255.255.0 \
--net 192.168.1.0 \
--gw 192.168.1.100 eth0

# expand the ramdisk
/sbin/expand /ramfs.img /dev/ram0

# mount ramdisk, proc and nfs
/bin/mount -t ext2 /dev/ram0 /var
/bin/mount -t proc proc /proc
/bin/mount -t nfs 192.168.1.11:/home/jeff/kit /usr

# start up the internet superserver
/sbin/inetd &

# that's it... sucess
exit 0 
