blob: 84f3bb3dd17bf4009b4a5fd8e2fa682802789685 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
set -e
if [ "$1" = purge ] || [ "$1" = remove ]; then
if [ -d /lib/firmware/b43legacy ]; then
echo "Deleting old extracted firmware..."
rm -rf /lib/firmware/b43legacy/*
fi
fi
exit 0
|