mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 21:57:17 +08:00
17 lines
422 B
Plaintext
17 lines
422 B
Plaintext
post_install () {
|
|
cat << _EOF
|
|
==> make sure you use KernelModeSetting (KMS)
|
|
==> see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
|
|
_EOF
|
|
}
|
|
|
|
post_upgrade() {
|
|
if [ "`vercmp $2 0.0.15_git20100117-1`" -lt 0 ]; then
|
|
cat << _EOF
|
|
==> ATTENTION: Usermode support has been dropped
|
|
==> make sure you use KernelModeSetting (KMS)
|
|
==> see http://wiki.archlinux.org/index.php/Nouveau#KMS for more
|
|
_EOF
|
|
fi
|
|
}
|