blob: 62094ecde3cc682d23425176118318b316db0ab8 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
signa(){
#get rid of Testing use only watermark
echo "3249c5b75bccae3ce4f3a65e88154133:037beb866bf8830dd7c3956cb0746c02077cfc8e628f837db0ba8666b127700b07:027af2d53eae960ad291c066b0267157567ea68462f9985f86c3916abe767101027ef2d43daf9659d2c19e38b02676575079a7d663fa980a86c29469bf257151027e" > etc/ati/signature
}
whisperer(){
echo "----------------------------------------------------------------"
echo "Note: hook was replaced by dkms"
echo "----------------------------------------------------------------"
echo "Add nomodeset to your kernel line in /boot/grub/menu.lst , ie.:"
echo "kernel /boot/vmlinuz-linux root=/dev/sda1 ro nomodeset"
echo "Note: don't do this if you have pxp/hybrid"
echo "----------------------------------------------------------------"
echo "You can use the tool 'aticonfig' to generate an xorg.conf file."
echo "--------------------- ^^^^^^^^^ --------------------------------"
echo "fglrx was added into /etc/modules-load.d/catalyst.conf"
echo "----------------------------------------------------------------"
echo " atieventsd (needs acpid pkg) on systemd:"
echo "systemctl enable atieventsd"
echo "systemctl start atieventsd"
echo "----------------------------------------------------------------"
echo "For more info and troubleshooting visit:"
echo "http://wiki.archlinux.org/index.php/ATI_Catalyst"
echo -e "\e[0;32m--------------------------- PXP --------------------------------\e[0m"
echo -e "\e[0;32m@pxp_user:\e[0m I switched GL/glx links to catalyst again..."
echo -e "\e[0;32m----------------------------------------------------------------\e[0m"
echo -e "\e[1;31m------------ DROPPED SUPPORT FOR RADEONS HD 5 6 k --------------\e[0m"
echo "Please note that this release SADLY :( is"
echo "dropping support for pre-GCN cards so mainly"
echo "Radeons of series 5000 and 6000"
echo -e "\e[1;31m----------------------------------------------------------------\e[0m"
}
bug_whisper(){
echo -e '\E[37;44m'"\033[1m---------------- I/O BUG ---------------------------------------\033[0m"
echo "There's a bug in fglrx found by lano1106 which generates"
echo "great amount of unneeded I/O operations"
echo ""
echo "To activate workaround enable systemd service:"
echo "systemctl enable temp-links-catalyst"
echo "systemctl start temp-links-catalyst"
echo ""
echo "More infos:"
echo "https://bbs.archlinux.org/viewtopic.php?pid=1279977#p1279977"
echo "https://bbs.archlinux.org/viewtopic.php?pid=1280193#p1280193"
echo -e '\E[37;44m'"\033[1m----------------------------------------------------------------\033[0m"
}
pre_upgrade(){
if [[ -e usr/lib/fglrx/switchlibGL ]] && [[ `usr/lib/fglrx/switchlibGL query | grep -c "intel"` == "1" ]]; then
touch tmp/switch_GL_intel
fi
if [[ -e usr/lib/fglrx/switchlibglx ]] && [[ `usr/lib/fglrx/switchlibglx query | grep -c "intel"` == "1" ]]; then
touch tmp/switch_glx_intel
fi
# remove hook fglrx
sed '/^HOOKS/s/ *fglrx//' -i etc/mkinitcpio.conf
systemctl stop catalyst-hook.service
systemctl disable catalyst-hook.service
# remove existing fglrx modules
usr/bin/catalyst_build_module ra
}
post_install(){
whisperer
}
post_upgrade(){
whisperer
## switch to intel if it was intel before upgrade
if [ -e tmp/switch_GL_intel ]; then
usr/lib/fglrx/switchlibGL intel
rm tmp/switch_GL_intel
fi
if [ -e tmp/switch_glx_intel ]; then
usr/lib/fglrx/switchlibglx intel
rm tmp/switch_glx_intel
fi
}
post_remove(){
# remove log
rm -f var/log/catalyst-install.log
echo "----------------------------------------------------------------"
echo " Don't forget to recover your original xorg.conf file."
echo "----------------------------------------------------------------"
}
|