diff --git a/overlay.d/15fcos/usr/lib/systemd/system-preset/45-fcos.preset b/overlay.d/15fcos/usr/lib/systemd/system-preset/45-fcos.preset index 27780787c9..95d8087d2b 100644 --- a/overlay.d/15fcos/usr/lib/systemd/system-preset/45-fcos.preset +++ b/overlay.d/15fcos/usr/lib/systemd/system-preset/45-fcos.preset @@ -3,3 +3,6 @@ enable coreos-check-ssh-keys.service enable coreos-check-cgroups-version.service # https://fedoraproject.org/wiki/Changes/EnableFwupdRefreshByDefault enable fwupd-refresh.timer +# Check if wifi firmwares are missing when NetworkManager-wifi is installed +# https://github.com/coreos/fedora-coreos-tracker/issues/1575 +enable coreos-check-wireless-firmwares.service diff --git a/overlay.d/15fcos/usr/lib/systemd/system/coreos-check-cgroups-version.service b/overlay.d/15fcos/usr/lib/systemd/system/coreos-check-cgroups-version.service index 2aff8f6cdb..101392140b 100644 --- a/overlay.d/15fcos/usr/lib/systemd/system/coreos-check-cgroups-version.service +++ b/overlay.d/15fcos/usr/lib/systemd/system/coreos-check-cgroups-version.service @@ -3,6 +3,7 @@ [Unit] Description=Check if cgroupsv1 Is Still Being Used ConditionControlGroupController=v1 +Before=systemd-user-sessions.service [Service] Type=oneshot ExecStart=/usr/libexec/coreos-check-cgroups-version diff --git a/overlay.d/15fcos/usr/lib/systemd/system/coreos-check-ssh-keys.service b/overlay.d/15fcos/usr/lib/systemd/system/coreos-check-ssh-keys.service index 0e24ae8aaa..d3c8815725 100644 --- a/overlay.d/15fcos/usr/lib/systemd/system/coreos-check-ssh-keys.service +++ b/overlay.d/15fcos/usr/lib/systemd/system/coreos-check-ssh-keys.service @@ -16,6 +16,7 @@ ConditionKernelCommandLine=ignition.firstboot Before=systemd-user-sessions.service [Service] +Before=systemd-user-sessions.service Type=oneshot ProtectHome=read-only ExecStart=/usr/libexec/coreos-check-ssh-keys diff --git a/overlay.d/15fcos/usr/lib/systemd/system/coreos-check-wireless-firmwares.service b/overlay.d/15fcos/usr/lib/systemd/system/coreos-check-wireless-firmwares.service new file mode 100644 index 0000000000..360bf2ed85 --- /dev/null +++ b/overlay.d/15fcos/usr/lib/systemd/system/coreos-check-wireless-firmwares.service @@ -0,0 +1,11 @@ +# This service is used for printing a message if +# some wireless firmwares are missing +[Unit] +Description=Check For Wireless Firmware Packages +Before=systemd-user-sessions.service +[Service] +Type=oneshot +ExecStart=/usr/libexec/coreos-check-wireless-firmwares +RemainAfterExit=yes +[Install] +WantedBy=multi-user.target diff --git a/overlay.d/15fcos/usr/libexec/coreos-check-wireless-firmwares b/overlay.d/15fcos/usr/libexec/coreos-check-wireless-firmwares new file mode 100755 index 0000000000..5172b3a1c0 --- /dev/null +++ b/overlay.d/15fcos/usr/libexec/coreos-check-wireless-firmwares @@ -0,0 +1,63 @@ +#!/usr/bin/bash +# This script checks if +# and will prints a message to the serial console +# to warn the user about missing wifi firmware messages +# and provide remediation steps +# See https://github.com/coreos/fedora-coreos-tracker/issues/1575 + +set -euo pipefail + +# List of wifi-firmwares +# SOURCE: https://pagure.io/fedora-comps/blob/main/f/comps-f41.xml.in#_2700 +firmwares=( +atheros-firmware +b43-fwcutter +b43-openfwwf +brcmfmac-firmware +iwlegacy-firmware +iwlwifi-dvm-firmware +iwlwifi-mvm-firmware +libertas-firmware +mt7xxx-firmware +nxpwireless-firmware +realtek-firmware +tiwilink-firmware +atmel-firmware +bcm283x-firmware +zd1211-firmware +) +# Get firmware names into `a|b|c|d` regex string +regex=$(IFS='|'; echo "${firmwares[*]}") + +layered_packages="$(rpm-ostree status --json -b | jq -r '.deployments[0]."requested-packages"[]')" + +if grep -q "NetworkManager-wifi" <<< "$layered_packages"; then + if grep -qP $regex <<< "$layered_packages"; then + exit 0 + fi +else + exit 0 +fi + +# Change the output color to yellow +warn=$(echo -e '\033[0;33m') +# No color +nc=$(echo -e '\033[0m') + +motd_path=/run/motd.d/30_wireless_firmwares_warning.motd + +cat << EOF > "${motd_path}" +${warn} +########################################################################## +WARNING: The NetworkManager-wifi is a requested layered package on this +system, but no Wi-Fi drivers are requested. The Wi-Fi drivers will no +longer be included by default in the future. + +More context and remediation steps are available in the following FAQ entry: +https://docs.fedoraproject.org/en-US/fedora-coreos/sysconfig-enabling-wifi/ + +To disable this warning, use: +sudo systemctl disable coreos-check-wireless-firmwares.service +########################################################################## +${nc} +EOF