From 4d50c8bd336b898efc2cf5f6fb4c194d05fb0bc8 Mon Sep 17 00:00:00 2001 From: Michael Larsen Date: Thu, 18 Sep 2025 15:16:24 +0200 Subject: [PATCH] Clean up Tested the logic on the MacBook. It worked and the install of the drivers are reenabled. --- install/config/hardware/fix-apple-bcm43xx.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/install/config/hardware/fix-apple-bcm43xx.sh b/install/config/hardware/fix-apple-bcm43xx.sh index 17a57d87..1a479991 100644 --- a/install/config/hardware/fix-apple-bcm43xx.sh +++ b/install/config/hardware/fix-apple-bcm43xx.sh @@ -7,10 +7,8 @@ pci_info=$(lspci -nnv) if echo "$pci_info" | grep -q "14e4:43a0" && echo "$pci_info" | grep -q "106b:"; then echo "Apple BCM4360 detected" -# sudo pacman -S --noconfirm --needed broadcom-wl dkms linux-headers + sudo pacman -S --noconfirm --needed broadcom-wl dkms linux-headers elif echo "$pci_info" | grep -q "14e4:4331" && echo "$pci_info" | grep -q "106b:"; then echo "Apple BCM4331 detected" -# sudo pacman -S --noconfirm --needed broadcom-wl dkms linux-headers -else - echo "No supported Broadcom chip detected" + sudo pacman -S --noconfirm --needed broadcom-wl dkms linux-headers fi