17 lines
222 B
Bash
Executable File
17 lines
222 B
Bash
Executable File
#!/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
|