[3178] in Release_Engineering
More AFS changes for DECstation
daemon@ATHENA.MIT.EDU (basch@MIT.EDU)
Fri Apr 15 14:13:50 1994
Date: Fri, 15 Apr 94 14:13:41 -0400
From: <basch@MIT.EDU> "Richard Basch"
To: rel-eng@MIT.EDU
Cc: basch@MIT.EDU
The following is a diff for rc.athena for the DECstation.
*** /etc/athena/rc.athena Fri Aug 6 11:56:06 1993
--- /tmp/rc.athena Fri Apr 15 14:11:50 1994
***************
*** 64,71 ****
fi
fi
! if [ "${AFSSRV}" = "true" ]; then
echo "" >/dev/console
echo -n "AFS server: " >/dev/console
if [ -f /usr/afs/bin/bosserver ]; then
/usr/afs/bin/bosserver &
--- 64,87 ----
fi
fi
! # Load the AFS kernel extension
! if [ -f /usr/vice/etc/dkload/dkload ]; then
echo "" >/dev/console
+ echo "Loading AFS..." >/dev/console
+ cd /usr/vice/etc/dkload
+ if [ -f libafs.a ]; then
+ ./dkload -quiet libafs.a 1>/dev/null 2>/dev/console
+ elif [ -f libafs.nonfs.a ]; then
+ ./dkload -quiet libafs.nonfs.a 1>/dev/null 2>/dev/console
+ else
+ echo "Cannot load AFS - no kernel library" >/dev/console
+ fi
+ if [ $? != 0 ]; then
+ echo "Error loading AFS" >/dev/console
+ fi
+ fi
+
+ if [ "${AFSSRV}" = "true" ]; then
echo -n "AFS server: " >/dev/console
if [ -f /usr/afs/bin/bosserver ]; then
/usr/afs/bin/bosserver &