mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 00:57:32 +08:00
15 lines
259 B
Plaintext
15 lines
259 B
Plaintext
post_install() {
|
|
cat << _EOF
|
|
|
|
Input device handling has changed since xorg-server 1.5.
|
|
Please read http://wiki.archlinux.org/index.php/Xorg_input_hotplugging.
|
|
|
|
_EOF
|
|
}
|
|
|
|
post_upgrade() {
|
|
if [ "`vercmp $2 1.4.99.906`" -lt 0 ]; then
|
|
post_install
|
|
fi
|
|
}
|