WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: Newbie Broadcom Wifi Driver Question  (Read 4854 times)

Offline Misalf

  • Hero Member
  • *****
  • Posts: 1702
Re: Newbie Broadcom Wifi Driver Question
« Reply #15 on: January 30, 2016, 02:12:12 PM »
This works for me
Code: [Select]
#!/bin/sh
sudo rmmod wl 2>/dev/null
tce-load -i firmware-broadcom_bcm43xx iw wifi wl-modules-KERNEL
sudo modprobe wl

echo ""

IFNUM=0
for i in /sys/class/net/eth* ; do
if [ -d $i/wireless ]; then
[ -e /sys/class/net/wlan${IFNUM} ] && IFNUM=$((IFNUM+1))
echo "Renaming  $i  to  wlan${IFNUM}"
sudo nameif wlan${IFNUM} `cat $i/address`
IFNUM=$((IFNUM+1))
fi
done

echo -en "\n:: Done.\n:: Press the ANY key..."
read -n1 junk

sudo wifi.sh

Download a copy and keep it handy: Core book ;)

Offline chke419

  • Newbie
  • *
  • Posts: 9
Re: Newbie Broadcom Wifi Driver Question
« Reply #16 on: January 30, 2016, 02:19:41 PM »
It was my fault this time, evidently I didn't put a space between the line and the new command.  ??? Shew, I sure hope everything isn't this hard to do in tiny core.

My thanks to all those whom helped!  ;D

Offline coreplayer2

  • Hero Member
  • *****
  • Posts: 3020
Re: Newbie Broadcom Wifi Driver Question
« Reply #17 on: January 30, 2016, 07:56:24 PM »
Learning sure is fun huh?


Sent from my iPhone using Tapatalk