projects
/
b43-tools.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fwcutter/make: Avoid _DEFAULT_SOURCE warning
[b43-tools.git]
/
DEBIAN
/
postrm
1
#!/bin/sh
2
3
set -e
4
5
if [ "$1" = purge ] || [ "$1" = remove ]; then
6
7
if [ -d /lib/firmware/b43legacy ]; then
8
echo "Deleting old extracted firmware..."
9
rm -rf /lib/firmware/b43legacy/*
10
fi
11
fi
12
13
14
15
exit 0