linux-firmware/debian/linux-firmware.preinst

17 lines
222 B
Plaintext
Raw Permalink Normal View History

2023-02-23 21:02:13 +01:00
#!/bin/sh
set -e
case "$1" in
install|upgrade)
# Fix package upgrade (LP: #1964814)
if [ -L /lib/firmware/ath11k/WCN6855/hw2.1 ]; then
rm -f /lib/firmware/ath11k/WCN6855/hw2.1
fi
;;
esac
#DEBHELPER#
exit 0