mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
14 lines
340 B
Text
14 lines
340 B
Text
# arg 1: the new package version
|
|
post_install() {
|
|
cat << EOF
|
|
IMPORTANT
|
|
==> In order to use the firmware you have to agree to Intel's license located in
|
|
==> /usr/share/licenses/ipw2100-fw/LICENSE else please remove this package
|
|
EOF
|
|
}
|
|
|
|
# arg 1: the new package version
|
|
# arg 2: the old package version
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|