Tag of 3.1.3a, an incremental release of 3.1.3.
This commit is contained in:
parent
818b1a2741
commit
b648da01d7
@ -174,7 +174,9 @@ int opendev(network_t *np, fdtype_t fdtype, int compete)
|
|||||||
switch (fdtype) {
|
switch (fdtype) {
|
||||||
case FT_ETHERNET:
|
case FT_ETHERNET:
|
||||||
/* Set NONBLOCK to avoid waiting for a device driver to become ready */
|
/* 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, ðstat) < 0) {
|
if (ioctl(np->fdp->fd, NWIOGETHSTAT, ðstat) < 0) {
|
||||||
/* Not an Ethernet. */
|
/* Not an Ethernet. */
|
||||||
close(fdp->fd);
|
close(fdp->fd);
|
||||||
|
@ -133,7 +133,7 @@ do
|
|||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
USRMB=400
|
USRMB=650
|
||||||
|
|
||||||
USRBLOCKS="`expr $USRMB \* 1024 \* 1024 / $BS`"
|
USRBLOCKS="`expr $USRMB \* 1024 \* 1024 / $BS`"
|
||||||
USRSECTS="`expr $USRMB \* 1024 \* 2`"
|
USRSECTS="`expr $USRMB \* 1024 \* 2`"
|
||||||
@ -286,10 +286,11 @@ chmod -R u+w $RELEASEDIR/usr/lib
|
|||||||
if [ "$COPY" -ne 1 ]
|
if [ "$COPY" -ne 1 ]
|
||||||
then
|
then
|
||||||
echo " * Doing new svn export"
|
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 }'`"
|
REVISION="`svn info $USERNAME $SVNREV $REPO | grep '^Revision: ' | awk '{ print $2 }'`"
|
||||||
echo "Doing export of revision $REVISION from $REPO."
|
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
|
REVTAG=r$REVISION
|
||||||
echo "
|
echo "
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user