blob: b1ebb620b242f232d4240ba95e355a9a6754d15f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
post_install() {
cat << 'EOM'
==>
==> PLEASE NOTE:
==> The firmware files for ACX100/111 devices are installed in
==> /usr/share/tiacx. Please identify the correct file(s) for your
==> device and copy them to /lib/firmware.
==>
==> See http://acx100.sourceforge.net/wiki/Firmware for details.
==>
EOM
}
post_upgrade() {
post_install
}
op=$1
shift
$op $*
|