Changes between Version 6 and Version 7 of Software/eAM/ePXE
- Timestamp:
- Dec 14, 2007, 8:23:32 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Software/eAM/ePXE
v6 v7 47 47 48 48 mount -t proc proc /proc 49 # pts requires a directory for multiple pts's: 50 mkdir /dev/pts 51 mount -t devpts devpts /dev/pts 52 53 ifconfig lo 127.0.0.1 49 54 50 55 # Get network up … … 52 57 $IP_CONFIG link set $NETDEV_DHCP up 53 58 $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 & 54 63 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 67 if [ -f /sbin/syslogd ]; then 68 /sbin/syslogd 69 else 70 echo "Syslog daemon not found" 71 fi 72 73 # You don't need this if you have serial access ;) 74 if [ -f /usr/sbin/telnetd ]; then 75 /usr/sbin/telnetd 76 else 77 echo "telnet daemon not found" 78 fi 55 79 cat /.orbit_image 56 80 # Start nodeagent 57 nodeagent &81 nodeagent4& 58 82 }}} 59 83