changeset: 8397:c13e74f20026 branch: mbp-2011 user: Romano date: Thu Apr 08 00:58:00 2021 -0700 summary: Don't attempt to load an ether interface if none exists. nusb/serial does not handle RNDIS CSP devices, so do not load those. follow-up doc fix for changeset 6370:8d9b9553c65c. diff -r 5c114f6f0d21 -r c13e74f20026 rc/bin/cpurc --- a/rc/bin/cpurc Thu Apr 08 00:49:59 2021 -0700 +++ b/rc/bin/cpurc Thu Apr 08 00:58:00 2021 -0700 @@ -59,7 +59,8 @@ addrs=`{ndb/query -a sys $sysname ether} if(! ~ $#addrs 0){ for(ether in /net/ether*){ - addr=`{cat $ether/addr} + if(test -d $ether) + addr=`{cat $ether/addr} switch($addr){ case $addrs # try /lib/ndb first, then do dhcp/slaac diff -r 5c114f6f0d21 -r c13e74f20026 rc/bin/nusbrc --- a/rc/bin/nusbrc Thu Apr 08 00:49:59 2021 -0700 +++ b/rc/bin/nusbrc Thu Apr 08 00:58:00 2021 -0700 @@ -14,8 +14,9 @@ case *01 nusb/audio $id case *02 - # serial and ethernet - nusb/serial $id + # serial and ethernet: 0xff0202 is RNDIS, handled by nusbrc + if(! ~ $4 ff0202) + nusb/serial $id # handled /sys/src/9/boot/nusbrc # nusb/ether $id case *03 diff -r 5c114f6f0d21 -r c13e74f20026 sys/src/cmd/nusb/ether/ether.c --- a/sys/src/cmd/nusb/ether/ether.c Thu Apr 08 00:49:59 2021 -0700 +++ b/sys/src/cmd/nusb/ether/ether.c Thu Apr 08 00:58:00 2021 -0700 @@ -849,7 +849,7 @@ nerr = 0; for(;;){ - /* receive allocates buffer and calls etheriq(b, 1); */ + /* receive allocates buffer and calls etheriq(b); */ if((*epreceive)(epin) < 0){ rerrstr(err, sizeof(err)); if(strstr(err, "interrupted") || strstr(err, "timed out"))