blob: b77be9b0c76fa6bc291ccab9f2eb6aa9bc55d727 (
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/b43 ]; then
echo "Deleting old extracted firmware..."
rm -rf /lib/firmware/b43/*
fi
fi
exit 0
|