diff options
author | Michael Hanson <hansonorders@verison.net> | 2010-03-23 22:52:53 (GMT) |
---|---|---|
committer | Michael Hanson <hansonorders@verison.net> | 2010-03-23 22:52:53 (GMT) |
commit | ca5653a9190f316859c3cd1b5cc506311a42d12e (patch) | |
tree | fad309d05a19b0da619298e66e20174bffb76012 /abs/core-testing/catalyst/catalyst.install | |
parent | 23bcf85e7fb8f89c0636849a7383587375cfe218 (diff) | |
download | linhes_pkgbuild-ca5653a9190f316859c3cd1b5cc506311a42d12e.zip linhes_pkgbuild-ca5653a9190f316859c3cd1b5cc506311a42d12e.tar.gz linhes_pkgbuild-ca5653a9190f316859c3cd1b5cc506311a42d12e.tar.bz2 |
catalyst: initial inclusion. **Untested** Proprietary ATI/AMD video drivers.
Diffstat (limited to 'abs/core-testing/catalyst/catalyst.install')
-rw-r--r-- | abs/core-testing/catalyst/catalyst.install | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/abs/core-testing/catalyst/catalyst.install b/abs/core-testing/catalyst/catalyst.install new file mode 100644 index 0000000..11bf0a7 --- /dev/null +++ b/abs/core-testing/catalyst/catalyst.install @@ -0,0 +1,34 @@ +KERNEL_VERSION=2.6.28-LinHES + +pre_install() { + if [ ! -e /usr/lib/xorg/modules/extensions/libdri.so ]; then + ln -sf /usr/lib/xorg/modules/extensions/libdri.xorg /usr/lib/xorg/modules/extensions/libdri.so + fi +} + +post_install() { + depmod $KERNEL_VERSION + if [ ! -e /usr/lib/xorg/modules/extensions/libdri.so ]; then + ln -sf /usr/lib/xorg/modules/extensions/libdri.xorg /usr/lib/xorg/modules/extensions/libdri.so + fi + echo "--------------------------------------------------------------" + echo "You can use the tool 'aticonfig' to generate an xorg.conf file." + echo "Remember to add fglrx to the MODULES list in /etc/rc.conf." + echo "--------------------------------------------------------------" +} + +post_upgrade() { + depmod $KERNEL_VERSION + if [ ! -e /usr/lib/xorg/modules/extensions/libdri.so ]; then + ln -sf /usr/lib/xorg/modules/extensions/libdri.xorg /usr/lib/xorg/modules/extensions/libdri.so + fi +} + +post_remove() { + depmod $KERNEL_VERSION + # If the symlink is dead, remove it + if [ ! -e /usr/lib/xorg/modules/extensions/libdri.so ]; then + ln -sf /usr/lib/xorg/modules/extensions/libdri.xorg /usr/lib/xorg/modules/extensions/libdri.so + fi + echo "NOTE: Don't forget to recover your original xorg.conf file." +} |