Changes between Version 6 and Version 7 of Software/eAM/ePXE


Ignore:
Timestamp:
Dec 14, 2007, 8:23:32 PM (16 years ago)
Author:
mcgrof
Comment:

Update to reflect trunk

Legend:

Unmodified
Added
Removed
Modified
  • Software/eAM/ePXE

    v6 v7  
    4747
    4848mount -t proc proc /proc
     49# pts requires a directory for multiple pts's:
     50mkdir /dev/pts
     51mount -t devpts devpts /dev/pts
     52
     53ifconfig lo 127.0.0.1
    4954
    5055# Get network up
     
    5257$IP_CONFIG link set $NETDEV_DHCP up
    5358$UDHCPC -i $NETDEV_DHCP -s $UDHCPC_SCRIPT
     59# No need to request an IP via DHCP on NETDEV_0
     60# If you do add it make sure you'll get an answer or
     61# be sure to background the job
     62# $UDHCPC -i $NETDEV_0 -s $UDHCPC_SCRIPT &
    5463
     64# enable logging (if the feature is built into busybox):
     65# Note that nodeagent4 doesn't use syslog anyway so you don't
     66# really need it unless you want to monitor some other daemons
     67if [ -f /sbin/syslogd ]; then
     68        /sbin/syslogd
     69else
     70        echo "Syslog daemon not found"
     71fi
     72
     73# You don't need this if you have serial access ;)
     74if [ -f /usr/sbin/telnetd ]; then
     75        /usr/sbin/telnetd
     76else
     77        echo "telnet daemon not found"
     78fi
    5579cat /.orbit_image
    5680# Start nodeagent
    57 nodeagent&
     81nodeagent4&
    5882}}}
    5983