SuSE Linux: Version 7.1
This article refers to an older version of SuSE Linux.
Therefore some of the informations given in this article may
be outdated or the article may contain stale links.
PCMCIA: Version 3.1.22
/etc/network.opts
: When you switch between the different 'schemes' you get an error message (even if the 'schemes' were switched correctly):
linux: # cardctl scheme athome checking : eth0./network: [: =: unary operator expected
/etc/pcmcia/network
an error crept in.
$WIRELESS
and put it in quotation marks
: "$WIRELESS"
.
Here is the respective patch:
------------------------------------------------------------- @@ -238,7 +238,7 @@ ;; 'cksum') - if [ $WIRELESS = 1 ] ; then exit 1 ; fi + if [ "$WIRELESS" = 1 ] ; then exit 1 ; fi chk_simple "$NEW_SCHEME,$SOCKET,$INSTANCE,$HWADDR" || exit 1 ;; -------------------------------------------------------------