summaryrefslogtreecommitdiffstats
path: root/abs/core/catalyst/catalyst.install
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2011-11-06 22:08:32 (GMT)
committerJames Meyer <james.meyer@operamail.com>2011-11-06 22:08:32 (GMT)
commitdf96ab68ee288fd64c74b3e4957dc80669b9933d (patch)
tree751079a5a92da3a3e8a80b1539330a69d67da46c /abs/core/catalyst/catalyst.install
parent629a1a0f0d093c13dd8ff4fab42202ae8a1d66a0 (diff)
downloadlinhes_pkgbuild-df96ab68ee288fd64c74b3e4957dc80669b9933d.zip
linhes_pkgbuild-df96ab68ee288fd64c74b3e4957dc80669b9933d.tar.gz
linhes_pkgbuild-df96ab68ee288fd64c74b3e4957dc80669b9933d.tar.bz2
catalyst: remove ATI drivers.
They can be added back if there is a pressing need for them.
Diffstat (limited to 'abs/core/catalyst/catalyst.install')
-rw-r--r--abs/core/catalyst/catalyst.install34
1 files changed, 0 insertions, 34 deletions
diff --git a/abs/core/catalyst/catalyst.install b/abs/core/catalyst/catalyst.install
deleted file mode 100644
index 11bf0a7..0000000
--- a/abs/core/catalyst/catalyst.install
+++ /dev/null
@@ -1,34 +0,0 @@
-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."
-}