mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
* Install sof-firmware on Intel Panther Lake for DSP audio Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * Need to have the sof-firmware package available during original offline install --------- Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Co-authored-by: David Heinemeier Hansson <david@hey.com>
12 lines
479 B
Bash
12 lines
479 B
Bash
echo "Install sof-firmware on Intel Panther Lake to restore DSP audio"
|
|
|
|
# linux-ptl hard-depped sof-firmware, mainline linux only optdeps it, so the
|
|
# orphan sweep after migration 1777572869 removed it. Force explicit so a
|
|
# subsequent orphan sweep in the same update cycle cannot take it again.
|
|
|
|
if omarchy-hw-intel-ptl && ! omarchy-hw-match "XPS"; then
|
|
omarchy-pkg-add sof-firmware
|
|
sudo pacman -D --asexplicit sof-firmware >/dev/null
|
|
omarchy-state set reboot-required
|
|
fi
|