Tag of 3.1.3a, an incremental release of 3.1.3.

This commit is contained in:
Ben Gras 2007-06-08 11:21:21 +00:00
parent 818b1a2741
commit b648da01d7
2 changed files with 7 additions and 4 deletions

View File

@ -174,7 +174,9 @@ int opendev(network_t *np, fdtype_t fdtype, int compete)
switch (fdtype) {
case FT_ETHERNET:
/* Set NONBLOCK to avoid waiting for a device driver to become ready */
fcntl(np->fdp->fd, F_SETFL, fcntl(np->fdp->fd, F_GETFL) | O_NONBLOCK);
/* Outcommented again to make the orinoco driver work. See doc of
orinoco */
fcntl(np->fdp->fd, F_SETFL, fcntl(np->fdp->fd, F_GETFL) /*| O_NONBLOCK*/);
if (ioctl(np->fdp->fd, NWIOGETHSTAT, &ethstat) < 0) {
/* Not an Ethernet. */
close(fdp->fd);

View File

@ -133,7 +133,7 @@ do
esac
done
USRMB=400
USRMB=650
USRBLOCKS="`expr $USRMB \* 1024 \* 1024 / $BS`"
USRSECTS="`expr $USRMB \* 1024 \* 2`"
@ -286,10 +286,11 @@ chmod -R u+w $RELEASEDIR/usr/lib
if [ "$COPY" -ne 1 ]
then
echo " * Doing new svn export"
REPO=https://gforge.cs.vu.nl/svn/minix/trunk/$SRC
REPO="`cd ../ && svn info | grep '^URL: ' | awk '{ print $2 }'`"
DIRNAME=`basename $REPO`
REVISION="`svn info $USERNAME $SVNREV $REPO | grep '^Revision: ' | awk '{ print $2 }'`"
echo "Doing export of revision $REVISION from $REPO."
( cd $RELEASEDIR/usr && svn $USERNAME export -r$REVISION $REPO )
( cd $RELEASEDIR/usr && svn $USERNAME export -r$REVISION $REPO && mv $DIRNAME $SRC )
REVTAG=r$REVISION
echo "