Fork of AUR SCST package bringing it up to date, and making it work better for my environment.
https://aur.archlinux.org/packages/scst/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
266 B
14 lines
266 B
5 years ago
|
post_install() {
|
||
|
EXTRAMODULES='extramodules-ARCH'
|
||
|
depmod $(cat /usr/lib/modules/${EXTRAMODULES}/version)
|
||
|
echo 'In order to use scst module, reboot the system or insert manually.'
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
post_install
|
||
|
}
|