Wi-Fi: Difference between revisions

From Alpine Linux
(→‎Prerequisites: Add note that installing the linux-firmware package tends to produce errors on data disk or diskless modes and to switch to system disk mode.)
(rephrased sentence, fixed wiki links and extra links)
 
(32 intermediate revisions by 9 users not shown)
Line 1: Line 1:
This page describes how to set up a wireless network connection with WPA encryption.
Alpine Linux supports two wireless daemons i.e [[#wpa_supplicant|wpa_supplicant]] and [[iwd]]. This page describes how to set up a wireless network connection using the default daemon [[#wpa_supplicant|wpa_supplicant]]. The [[iwd]] daemon is also fully supported in Alpine Linux. {{Note|Do not use both wireless daemons i.e [[#wpa_supplicant|wpa_supplicant]] and [[iwd]] simultaneously, as it leads to conflicts.}}
 
Choose a wireless daemon between {{Pkg|iwd}} and {{Pkg|wpa_supplicant}}


== Prerequisites ==
== Prerequisites ==


Working wireless drivers  
Working wireless drivers. To list your available network interfaces use the commands {{ic|ip link}} or {{ic|ip a}}. Refer to [[#Troubleshooting|Troubleshooting]] section if you don't see any wireless interfaces (e.g. {{Path|wlan0}}).  
{{Note|in most cases installing {{Pkg|linux-firmware}} should get you the required drivers. Installation of this package can produce errors on diskless or data disk modes. If such errors occur, switch to system disk mode.}}
 
If you are using a '''Broadcom chipset''', see the [[#Broadcom_Wi-Fi_Chipset_Users|Broadcom Wi-Fi section]].)
 
== iwd ==
 
[https://wiki.archlinux.org/title/Iwd iwd] (iNet wireless daemon) is a wireless daemon written by Intel and aiming at replacing {{Pkg|wpa_supplicant}}. The core goal of the project is to optimize resource utilization by not depending on any external libraries and instead utilizing features provided by the Linux Kernel to the maximum extent possible.
 
{{Pkg|iwd}} is supported since [https://alpinelinux.org/posts/Alpine-3.10.0-released.html Alpine Linux 3.10].
 
To get started, install {{Pkg|iwd}}:
 
{{Cmd|apk add iwd}}
 
To do anything with iwd, it has to be running:
 
{{Cmd|rc-service iwd start}}
 
If it was not running, running <code>iwctl ..</code> commands will print
 
The name net.connman.iwd was not provided by any .service files 
Failed to retrieve IWD dbus objects, quitting...
 
and running just <code>iwctl</code> will say it is waiting for IWD to start.
 
List your available wifi device(s) (you probably have ''wlan0''):
 
{{Cmd|iwctl device list}}
 
If you don't know the SSID of your network you can run a scan and retrieve a list of all the detected networks:
 
{{Cmd|iwctl station wlan0 scan && iwctl station wlp8s0 get-networks}}
 
To connect to a network:
 
{{Cmd|iwctl station wlan0 connect <SSID>}}
 
<br>
 
{{Note|iwd automatically stores network passphrases in the /var/lib/iwd directory and uses them to auto-connect in the future. If you run diskless Alpine, make sure to include this directory to the apkovl and commit:
{{Cmd|lbu add /var/lib/iwd && lbu commit -d}}}}
 
{{Note|Since version 1.10, iwd supports IPv6, but it is disabled by default. To enable it, add the following to the configuration file:
{{Cat|/etc/iwd/main.conf|<nowiki>[Network]
EnableIPv6=true</nowiki>}}}}
 
<br>
 
Finally, configure {{Pkg|iwd}} and its dependency {{Pkg|dbus}} to start automatically on boot:
{{Cmd|rc-update add iwd boot && rc-update add dbus boot}}
 
<br>
 
Add a entry for the desired interface (e.g. {{Path|wlan0}}):
{{Cat|/etc/network/interfaces|auto wlan0
iface wlan0 inet dhcp}}
 
{{Note|You could instead use the iwd's built-in network configuration by setting {{Path|<nowiki>EnableNetworkConfiguration=true</nowiki>}} in {{Path|/etc/iwd/main.conf}}}}
 
<br>


Manually restart '''networking''':
== Setup-interfaces ==


{{Cmd|rc-service networking restart}}
The [[Configure_Networking#setup-interfaces|setup-interfaces]] script automates the installation and configuration of
<code>wpa_supplicant</code> daemon to use Wi-Fi. [[NetworkManager]] can then be used to manage your Wi-Fi  using various gui/tui tools.


<br>
== Manual configuration ==


Your wifi interface should now be up and have a dedicated IP adress:
To get started install {{Pkg|wpa_supplicant}} package: {{Cmd|# apk add wpa_supplicant}}
{{Cmd|ip a show wlan0}}


<br>
Use this command to add your Wi-Fi network to wpa_supplicant: {{Cmd|# wpa_passphrase 'ExampleWifiSSID' 'ExampleWifiPassword' > /etc/wpa_supplicant/wpa_supplicant.conf}}
 
''(Access point not broadcasting its SSID requires additional line <code>scan_ssid=1</code> in the file {{Path|/etc/wpa_supplicant/wpa_supplicant.conf}})''
Useful link: [https://wiki.archlinux.org/title/Iwd#Enable_built-in_network_configuration Archlinux wiki page] if you need more specific configuration.
 
== wpa_supplicant  ==
 
To get started install {{Pkg|wpa_supplicant}}
 
{{Cmd|apk add wpa_supplicant}}
 
<br>
 
To list your available network interfaces:
{{Note|if you don't see any wireless interfaces (e.g. {{Path|wlan0}}), you probably need to load and/or install drivers/firmware.}}
 
<br>
 
{{Cmd|ip link}}
or
{{Cmd|ip a}}
 
<br>
 
Bring up the desired interface:
{{Cmd|ip link set wlan0 up}}
 
{{Note|If this errors with <code>ioctl 0x8914 failed: No error information</code>, that's <code>busybox ip</code>'s way of saying your wireless radio is rfkill'd. See the [[#Rfkill|Rfkill section]] for information on how to unblock your wireless radio.}}
 
<br>
 
Use this command to add your Wi-Fi network to wpa_supplicant:
{{Cmd|wpa_passphrase 'ExampleWifiSSID' 'ExampleWifiPassword' > /etc/wpa_supplicant/wpa_supplicant.conf}}
''(Access point not broadcasting its SSID requires additional line <code>scan_ssid=1</code> in the file <code>wpa_supplicant.conf</code>)''


{{Note|the Wi-Fi SSID and password are case sensitive and the single quote before and after the SSID and password need to be there}}
{{Note|the Wi-Fi SSID and password are case sensitive and the single quote before and after the SSID and password need to be there}}


<br>
Start wpa_supplicant in the foreground to check if wireless connection succeeds.{{Cmd|# wpa_supplicant -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf}}


Start wpa_supplicant in the foreground to make sure the connection succeeds.
'''Optional security precaution:'''
{{Cmd|wpa_supplicant -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf}}


<br>
By default {{Pkg|wpa_supplicant}} will store your Wi-Fi password in plain text:{{Cat|/etc/wpa_supplicant/wpa_supplicant.conf|<nowiki>network={
    ssid="<YourSSIDShouldBeHere>"
        #psk="<YourPasswordShouldBeHereInPlainText>"
    psk=<RandomLettersAndNumbersShouldBeHere>
}</nowiki>}}
If you dont want your stored password in plain text just delete the line with <code>#psk="<YourPasswordShouldBeHereInPlainText>"</code> on it.


If all is well, run it as a daemon in the background by setting the {{Path|-B}} option.
If all is well, run it as a daemon in the background by setting the {{Path|-B}} option. {{Cmd|# wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf}}
{{Cmd|wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf}}


<br>
Configure the interface with an IP address.{{Cmd|# udhcpc -i wlan0}}


Configure the interface with an IP address.
Sanity check: the interface should have a {{Path|inet}} address. {{Cmd|$ ip addr show wlan0}}
{{Cmd|udhcpc -i wlan0}}


Sanity check: the interface should have a {{Path|inet}} address.
Add a entry for the desired interface (e.g. <code>wlan0</code>) in the file as follows:{{Cat|/etc/network/interfaces|auto lo
{{Cmd|ip addr show wlan0}}
auto wlan0
 
<br>
 
=== Automatic Configuration on System Boot  ===
 
Add a entry for the desired interface (e.g. {{Path|wlan0}}):
{{Cat|/etc/network/interfaces|auto wlan0
iface wlan0 inet dhcp}}
iface wlan0 inet dhcp}}


{{Note|Dont remove or comment out the '''auto lo''' entry}}
{{Warning|Don't remove or comment out the '''auto lo''' entry}}


Sanity check: Make sure {{Path|/etc/wpa_supplicant/wpa_supplicant.conf}} is the correct configuration for the wireless access point you want to connect to.
Sanity check: Make sure {{Path|/etc/wpa_supplicant/wpa_supplicant.conf}} is the correct configuration for the wireless access point you want to connect to.


Bring the interface down.
Bring the interface down. {{Cmd|# ip link set wlan0 down}}


{{Cmd|ip link set wlan0 down}}
Manually restart (or '''start''') '''networking'''.{{Cmd|# rc-service networking --quiet restart &}}


<br>
Perform [[Configure_Networking#Connectivity_testing|sanity checks]]. For issues related to name resolution, refer [[Configure_Networking#Configuring_DNS|Networking]] section.


Manually restart (or '''start''') '''networking'''.
=== Service configuration ===
{{Seealso|NetworkManager}}


{{Cmd|/etc/init.d/networking --quiet restart &}}
Proceed to configure wpa_supplicant service to start automatically on boot, if networking works properly: {{Cmd|# rc-update add wpa_supplicant boot}}
Also ensure that '''networking''' is set to automatically start on boot: {{Cmd|# rc-update add networking boot}}


<br>
Manage wpa_supplicant service using the standard '''start''', '''stop''' and '''restart''' options. For eg: to start wpa_supplicant service: {{Cmd|# rc-service wpa_supplicant start}}


If all is well (feel free to confirm with the sanity checks),
=== Launching udhcpc through wpa_cli actions ===


Configure wpa_supplicant to start automatically on boot:
With the above configuration, udhcpc will only run once at boot. If the Wifi isn't available then, or the network changes after booting, udhcpc needs to be notified. You can automatically notify udhcpc of network changes by using a wpa_cli action file, such as the one installed by default at {{Path|/etc/wpa_supplicant/wpa_cli.sh}}.


{{Cmd|# rc-update add wpa_supplicant boot}}
To manually start a wpa_cli daemon with an action file, use the `-a` option: {{Cmd|# wpa_cli -a /etc/wpa_supplicant/wpa_cli.sh}}


<br>
To do this automatically, use the `wpa_cli` service included in {{Pkg|wpa_supplicant-openrc}}: {{Cat|/etc/conf.d/wpa_cli|<nowiki>WPACLI_OPTS="-a /etc/wpa_supplicant/wpa_cli.sh"</nowiki>}}
Add the service to start at boot: {{Cmd|# rc-update add wpa_cli boot}}


Also make sure '''networking''' is set to automatically start on boot:
== Troubleshooting ==


{{Cmd|# rc-update add networking boot}}
If the commands {{ic|ip link}} or {{ic|ip a}} do not show any {{Path|wlan0}} interface, you probably need to load and/or install drivers/firmware. In most cases installing {{Pkg|linux-firmware}} should get you the required drivers. Installation of this package can produce errors on diskless or data disk modes. If such errors occur, switch to system disk mode.


<br>
If you are using a '''Broadcom chipset''', see the [[#Broadcom_Wi-Fi_Chipset_Users|Broadcom Wi-Fi section]].


'''Optional security precaution:'''
Bring up the desired interface: {{Cmd|# ip link set wlan0 up}}


By default {{Pkg|wpa_supplicant}} will store your Wi-Fi password in plain text:
=== Check dmesg ===


{{Cat|(Example) /etc/wpa_supplicant/wpa_supplicant.conf|<nowiki>network={
Run dmesg and check for errors related to the wireless interface. Usually, dmesg gives maximum information related to network and all other hardware.
    ssid="<YourSSIDShouldBeHere>"
{{Cmd|# dmesg}}
        #psk="<YourPasswordShouldBeHereInPlainText>"
    psk=<RandomLettersAndNumbersShouldBeHere>
}</nowiki>}}


this is not necessary and {{Pkg|wpa_supplicant}} should funtion just fine without it, if you dont want your stored password in plain text just delete the line with <code>#psk="<YourPasswordShouldBeHereInPlainText>"</code> on it.
=== checking network cards ===


<br>
{{Cmd|$ cat /proc/net/dev }} lists the network interfaces that are detected. If the expected interfaces are not available, Check what network hardware chip you have using lspci or lsusb:


== Launching udhcpc through wpa_cli actions ==
{{Cmd|$ lspci -nn }}
{{Cmd|$ lsusb }}


{{Todo|Figure out if theses two sections are different or connected to one another}}
Refer [[How to get regular stuff working#Hardware_Management|hardware management]], if the above output lacks sufficient information.


With the above configuration, udhcpc will only run once at boot.
Check what driver the card uses and modprobe it. Check that the card is in master mode.
If the Wifi isn't available then, or the network changes in between, it needs to be notified.
Check what driver you need on the [https://wireless.wiki.kernel.org/en/users/Drivers/b43#list_of_hardware b43 compatibility page]
This is done through the wpa_cli action script in /etc/wpa_supplicant/wpa_cli.sh


== Automatic Reconnection when WIFI signal is lost ==
=== Broadcom Wi-Fi Chipset Users ===
To enable automatic reconnection when wifi signal is lost add these to config:


{{Cat|/etc/wpa_supplicant/wpa_supplicant.conf|<nowiki>ap_scan=1
The Broadcom chipset is quite popular among older computers. The b43 driver is included in the linux-lts or linux-edge kernel packages. However, you might need to compile the firmware manually for this chipset as it is not included in linux-firmware for some cards.  
autoscan=periodic:10
disable_scan_offload=1
</nowiki>
}}


To check what broadcom chip you have using lspci:


{{Cmd|rc-update add wpa_cli boot}}
{{Cmd|$ lspci -nn -d 14e4:}}


<br>
====B43====


== Troubleshooting ==
Download firmware cutter. {{Cmd|$ apk add b43-fwcutter}}


==== Broadcom Wi-Fi Chipset Users  ====
Now we have everything to download the proprietary driver and extract the firmware from it: {{Cmd|<nowiki># export FIRMWARE_INSTALL_DIR="/lib/firmware"
 
$ wget http://www.lwfinger.com/b43-firmware/broadcom-wl-5.100.138.tar.bz2
The Broadcom chipset is quite popular among older computers. The b43 driver is included in the linux-lts or linux-edge kernel packages. However, you might need to compile the firmware manually for this chipset as it is not included in linux-firmware for some cargs.
$ tar xjf broadcom-wl-5.100.138.tar.bz2
 
$ b43-fwcutter -w "$FIRMWARE_INSTALL_DIR" broadcom-wl-5.100.138/linux/wl_apsta.o</nowiki>}}
You can check if you have a Broadcom chipset by using lspci:
 
{{Cmd|lspci -nn -d 14e4:}}
 
Now we need fwcutter:
 
{{Cmd|apk add b43-fwcutter}}
 
Now we have everything to download the proprietary driver and extract the firmware from it:
 
<pre>
export FIRMWARE_INSTALL_DIR="/lib/firmware"
wget http://www.lwfinger.com/b43-firmware/broadcom-wl-5.100.138.tar.bz
tar xjf broadcom-wl-5.100.138.tar.bz2
sudo b43-fwcutter -w "$FIRMWARE_INSTALL_DIR" broadcom-wl-5.100.138/linux/wl_apsta.o
</pre>


More information can be found [http://linuxwireless.sipsolutions.net/en/users/Drivers/b43/#Other_distributions_not_mentioned_above here].
More information can be found [http://linuxwireless.sipsolutions.net/en/users/Drivers/b43/#Other_distributions_not_mentioned_above here].


Now you need to use modprobe so the device will show up:
Now you need to use modprobe so the device will show up: {{Cmd|# modprobe b43}}
 
{{Cmd|modprobe b43}}


Now continue with the normal instructions.  
Now continue with the normal instructions.  


<br>
====wl ====


==== Rfkill ====
You can use APKBUILD from [https://codeberg.org/NeYurii/broadcom-wl here]. It uses [[Alpine kernel module support]] for automatic building and updating driver for new kernel versions. Instructions can be found in the [https://codeberg.org/NeYurii/broadcom-wl broadcom-wl repository].


''See Also: [https://wiki.archlinux.org/title/Network_configuration/Wireless#Rfkill_caveat Network configuration/Wireless#Rfkill caveat - ArchLinux Wiki]''
Alternately, install the software to build a driver: {{Cmd|apk add git alpine-sdk linux-headers linux-lts-dev}}


<br>
Then install the driver build repo (this is archived, however it's legacy so that doesn't matter): {{Cmd|git clone https://github.com/antoineco/broadcom-wl
cd broadcom-wl
}}


Many laptops have a hardware button (or switch) to turn off wireless card, however, the card can also be blocked by kernel. This can be changed using rfkill. To show the current of your Wi-Fi:
Then follow the build instructions listed in the git repo: {{Cmd|make
doas make install
doas depmod -A
doas modprobe wl
}}


{{Cat|(example) $ rfkill list|0: phy0: wlan
Reboot and you have a working wl driver. Now continue with the normal instructions.
    Soft blocked: no
    Hard blocked: no}}


<br>
=== Rfkill ===


If the card is hard-blocked, use the hardware button or switch to unblock it. If the card is not hard-blocked but soft-blocked, use the following command:  
An error message <code>ioctl 0x8914 failed: No error information</code>, is the <code>busybox ip</code>'s way of saying your wireless radio is rfkilled, which means the wireless card is blocked by kernel. This can be changed using rfkill. To show the current status of your Wi-Fi:  
 
<p style="background-color:#f9f9f9; border:1px dashed #2f6fab; line-height:1.1em; padding:1em; font-family:monospace; font-size:10pt; white-space:pre; overflow:auto;"><span style="color:green;">~</span>'''$''' rfkill list
{{Cmd|# rfkill unblock wifi}}
0: phy0: wlan
 
    Soft blocked: no
<br>
    Hard blocked: no
</p>


== See Also ==
If the card is hard-blocked, use the hardware button or switch to unblock it. If the card is not hard-blocked but soft-blocked, use the following command: {{Cmd|# rfkill unblock wifi}}


* [[Installation#Post-Install|Post Install]]
== See also ==
* [[Alpine setup scripts]]


* [[Configure_Networking| Networking in Alpine Linux]]
* [[Iwd|iwd]] - An alternate to wpa_supplicant
* [[NetworkManager]] - Front-end to Networking
* [https://wiki.postmarketos.org/wiki/WiFi PostmarketOS Wiki]
* [https://wiki.archlinux.org/title/Network_configuration/Wireless Archwiki]
* [https://wiki.gentoo.org/wiki/Wi-Fi Gentoo Wiki]
* [[Alpine kernel module support]] - A fully automated solution for building kernel modules
* [https://unix.stackexchange.com/questions/606073/how-to-build-kernel-modules-in-alpine-3-12 Build kernel modules manually]


[[Category:Networking]]
[[Category:Networking]]

Latest revision as of 06:13, 21 March 2025

Alpine Linux supports two wireless daemons i.e wpa_supplicant and iwd. This page describes how to set up a wireless network connection using the default daemon wpa_supplicant. The iwd daemon is also fully supported in Alpine Linux.

Note: Do not use both wireless daemons i.e wpa_supplicant and iwd simultaneously, as it leads to conflicts.

Prerequisites

Working wireless drivers. To list your available network interfaces use the commands ip link or ip a. Refer to Troubleshooting section if you don't see any wireless interfaces (e.g. wlan0).

Setup-interfaces

The setup-interfaces script automates the installation and configuration of wpa_supplicant daemon to use Wi-Fi. NetworkManager can then be used to manage your Wi-Fi using various gui/tui tools.

Manual configuration

To get started install wpa_supplicant package:

# apk add wpa_supplicant

Use this command to add your Wi-Fi network to wpa_supplicant:

# wpa_passphrase 'ExampleWifiSSID' 'ExampleWifiPassword' > /etc/wpa_supplicant/wpa_supplicant.conf

(Access point not broadcasting its SSID requires additional line scan_ssid=1 in the file /etc/wpa_supplicant/wpa_supplicant.conf)

Note: the Wi-Fi SSID and password are case sensitive and the single quote before and after the SSID and password need to be there

Start wpa_supplicant in the foreground to check if wireless connection succeeds.

# wpa_supplicant -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf

Optional security precaution:

By default wpa_supplicant will store your Wi-Fi password in plain text:

Contents of /etc/wpa_supplicant/wpa_supplicant.conf

network={ ssid="<YourSSIDShouldBeHere>" #psk="<YourPasswordShouldBeHereInPlainText>" psk=<RandomLettersAndNumbersShouldBeHere> }

If you dont want your stored password in plain text just delete the line with #psk="<YourPasswordShouldBeHereInPlainText>" on it.

If all is well, run it as a daemon in the background by setting the -B option.

# wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf

Configure the interface with an IP address.

# udhcpc -i wlan0

Sanity check: the interface should have a inet address.

$ ip addr show wlan0

Add a entry for the desired interface (e.g. wlan0) in the file as follows:

Contents of /etc/network/interfaces

auto lo auto wlan0 iface wlan0 inet dhcp
Warning: Don't remove or comment out the auto lo entry


Sanity check: Make sure /etc/wpa_supplicant/wpa_supplicant.conf is the correct configuration for the wireless access point you want to connect to.

Bring the interface down.

# ip link set wlan0 down

Manually restart (or start) networking.

# rc-service networking --quiet restart &

Perform sanity checks. For issues related to name resolution, refer Networking section.

Service configuration

Proceed to configure wpa_supplicant service to start automatically on boot, if networking works properly:

# rc-update add wpa_supplicant boot

Also ensure that networking is set to automatically start on boot:

# rc-update add networking boot

Manage wpa_supplicant service using the standard start, stop and restart options. For eg: to start wpa_supplicant service:

# rc-service wpa_supplicant start

Launching udhcpc through wpa_cli actions

With the above configuration, udhcpc will only run once at boot. If the Wifi isn't available then, or the network changes after booting, udhcpc needs to be notified. You can automatically notify udhcpc of network changes by using a wpa_cli action file, such as the one installed by default at /etc/wpa_supplicant/wpa_cli.sh.

To manually start a wpa_cli daemon with an action file, use the `-a` option:

# wpa_cli -a /etc/wpa_supplicant/wpa_cli.sh

To do this automatically, use the `wpa_cli` service included in wpa_supplicant-openrc:

Contents of /etc/conf.d/wpa_cli

WPACLI_OPTS="-a /etc/wpa_supplicant/wpa_cli.sh"

Add the service to start at boot:

# rc-update add wpa_cli boot

Troubleshooting

If the commands ip link or ip a do not show any wlan0 interface, you probably need to load and/or install drivers/firmware. In most cases installing linux-firmware should get you the required drivers. Installation of this package can produce errors on diskless or data disk modes. If such errors occur, switch to system disk mode.

If you are using a Broadcom chipset, see the Broadcom Wi-Fi section.

Bring up the desired interface:

# ip link set wlan0 up

Check dmesg

Run dmesg and check for errors related to the wireless interface. Usually, dmesg gives maximum information related to network and all other hardware.

# dmesg

checking network cards

$ cat /proc/net/dev

lists the network interfaces that are detected. If the expected interfaces are not available, Check what network hardware chip you have using lspci or lsusb:

$ lspci -nn

$ lsusb

Refer hardware management, if the above output lacks sufficient information.

Check what driver the card uses and modprobe it. Check that the card is in master mode. Check what driver you need on the b43 compatibility page

Broadcom Wi-Fi Chipset Users

The Broadcom chipset is quite popular among older computers. The b43 driver is included in the linux-lts or linux-edge kernel packages. However, you might need to compile the firmware manually for this chipset as it is not included in linux-firmware for some cards.

To check what broadcom chip you have using lspci:

$ lspci -nn -d 14e4:

B43

Download firmware cutter.

$ apk add b43-fwcutter

Now we have everything to download the proprietary driver and extract the firmware from it:

# export FIRMWARE_INSTALL_DIR="/lib/firmware" $ wget http://www.lwfinger.com/b43-firmware/broadcom-wl-5.100.138.tar.bz2 $ tar xjf broadcom-wl-5.100.138.tar.bz2 $ b43-fwcutter -w "$FIRMWARE_INSTALL_DIR" broadcom-wl-5.100.138/linux/wl_apsta.o

More information can be found here.

Now you need to use modprobe so the device will show up:

# modprobe b43

Now continue with the normal instructions.

wl

You can use APKBUILD from here. It uses Alpine kernel module support for automatic building and updating driver for new kernel versions. Instructions can be found in the broadcom-wl repository.

Alternately, install the software to build a driver:

apk add git alpine-sdk linux-headers linux-lts-dev

Then install the driver build repo (this is archived, however it's legacy so that doesn't matter):

git clone https://github.com/antoineco/broadcom-wl cd broadcom-wl

Then follow the build instructions listed in the git repo:

make doas make install doas depmod -A doas modprobe wl

Reboot and you have a working wl driver. Now continue with the normal instructions.

Rfkill

An error message ioctl 0x8914 failed: No error information, is the busybox ip's way of saying your wireless radio is rfkilled, which means the wireless card is blocked by kernel. This can be changed using rfkill. To show the current status of your Wi-Fi:

~$ rfkill list 0: phy0: wlan Soft blocked: no Hard blocked: no

If the card is hard-blocked, use the hardware button or switch to unblock it. If the card is not hard-blocked but soft-blocked, use the following command:

# rfkill unblock wifi

See also