blob: 057b433be780e305382c90f10f959035206d07ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
echo 'You need manually edit your bootloader boot entry'
}
post_upgrade() {
post_install
}
post_remove() {
rm /usr/share/X11/xorg.conf.d/20-displaylink.conf
post_install
}
|