mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 22:47:14 +08:00
d0edc7a444
* nvidia-96xx: add xorg 1.10 support * nouveau: remove replacement of nvidia-96xx
19 lines
464 B
Plaintext
19 lines
464 B
Plaintext
post_install () {
|
|
cat << _EOF
|
|
==> make sure you use KernelModeSetting (KMS)
|
|
==> see http://www.chakra-project.org/wiki/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://www.chakra-project.org/wiki/index.php/Nouveau#KMS for more
|
|
_EOF
|
|
else
|
|
post_install $1
|
|
fi
|
|
}
|