./uninstall-driver.sh
# download driver and update VERSION and RETARD value
./install-driver.sh
# download APP SDK and update VERSION value
./install-APP-SDK.sh
# download ADL and update VERSION value
./install-ADL-SDK.sh
./rebuild-cgminer.sh
Last active
August 29, 2015 13:55
-
-
Save mishak87/8693072 to your computer and use it in GitHub Desktop.
Litecoin BAMT 1.3 driver update
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
VERSION=6.0 | |
cd /tmp | |
unzip ADL_SDK_$VERSION.zip | |
cp /tmp/include/* /opt/miners/cgminer/ADL_SDK |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
VERSION=v2.9 | |
cd /tmp | |
tar xfvz AMD-APP-SDK-$VERSION-lnx32.tgz | |
chmod +x Install-AMD-APP.sh | |
./Install-AMD-APP.sh | |
ln -sf /opt/AMDAPP/include/CL /usr/include | |
ln -sf /opt/AMDAPP/lib/x86/* /usr/lib/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
VERSION="13.11-betav9.95" | |
RETARD="13.11-betaV9.95" | |
cd /tmp | |
unzip amd-catalyst-$VERSION-linux-x86.x86_64.zip | |
chmod +x amd-catalyst-$RETARD-linux-x86.x86_64.run | |
./amd-catalyst-$RETARD-linux-x86.x86_64.run --force | |
aticonfig --adapter=all --initial | |
coldreboot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
cd /opt/miners/cgminer | |
make clear | |
make |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
apt-get update | |
/usr/share/ati/fglrx-uninstall.sh --force | |
coldreboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment