mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 13:54:37 +08:00
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
|
|
}
|