blob: 9296f8c85bd61a56d73d49d918d1217cd56f2785 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | # arg 1:  the new package version
post_install() {
cat << EOF
IMPORTANT
==> In order to use this firmware you have to agree to Intel's license located in
==> /lib/firmware/LICENSE.ipw3945-ucode else please remove this package.
EOF
}
# arg 1:  the new package version
# arg 2:  the old package version
post_upgrade() {
  post_install $1
}
op=$1
shift
$op $*
 |