blob: a57e56fbf485a71c0b56e84780cab9757c8c7442 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
post_upgrade() {
cat <<MSG1
>>> Closed source drivers - like those from Nvidia - might not
have an updated ABI version to match xlibre-xserver.
To prevent problems with these drivers create this file:
/etc/X11/xorg.conf.d/xlibre.conf
Section "ServerFlags"
Option "IgnoreABI" "true"
EndSection
MSG1
}
post_install() {
post_upgrade
cat <<MSG2
>>> It is required to replace all installed xf86* xorg driver and
xorg-server* packages with their xlibre-* counterparts.
If for example xf86-video-intel is installed this should be
replaced with xlibre-xf86-video-intel.
MSG2
}
|