mirror of
https://github.com/archlinux/aur.git
synced 2026-01-27 20:28:31 +01:00
17 lines
321 B
Text
17 lines
321 B
Text
post_install() {
|
|
echo "Note: The driver is still in development"
|
|
echo ""
|
|
echo "Load the driver manually via 'modprobe linect'"
|
|
echo "Add it to the MODULES array in /etc/rc.conf for automatic loading on system startup"
|
|
echo ""
|
|
|
|
/sbin/depmod -a
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
/sbin/depmod -a
|
|
}
|