cd $RD
fi
+# bring the interface up for a bit
+ifconfig eth0 up
+
# create the interfaces layout
echo "Setting up network interfaces configuration"
echo ".... loopback"
then
echo ".... eth0 - search domain $NET_SEARCH_DOMAIN"
cat << EOF >> /etc/network/interfaces
-gateway $NET_SEARCH_DOMAIN
+dns-search $NET_SEARCH_DOMAIN
EOF
fi
then
echo ".... eth0 - dns servers $NET_DNS_SERVERS"
cat << EOF >> /etc/network/interfaces
-gateway $NET_DNS_SERVERS
+dns-nameservers $NET_DNS_SERVERS
EOF
fi
# addatch the pps device
ldattach pps /dev/ttyS0
# find the minor/major numbers of the device and create
-if [ -f /sys/class/pps/pps*/dev ]
+if [ -f /sys/class/pps/pps0/dev ]
then
- PPSMAJOR=`cat /sys/class/pps/pps*/dev|cut -f1 -d:`
- PPSMINOR=`cat /sys/class/pps/pps*/dev|cut -f2 -d:`
+ PPSMAJOR=`cat /sys/class/pps/pps0/dev|cut -f1 -d:`
+ PPSMINOR=`cat /sys/class/pps/pps0/dev|cut -f2 -d:`
echo ".... pps0"
mknod -m 0664 /dev/pps0 c $PPSMAJOR $PPSMINOR
echo ".... gpspps0"