summarylogtreecommitdiffstats
path: root/cpi.install
blob: 3e04f174548a409245e2f4d5c03878f231b9e5cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
post_install() {
    cat << /here
load module:
  modprobe netcat
to listen, open /dev/netcat with your favourite player
if there is no sound, set default_driver=pulse in /etc/libao.conf
track information can be accessed by dmesg
/here
    depmod -a
}

post_upgrade() {
    post_install
}

post_remove() {
    depmod -a
}