Skip to content

Instantly share code, notes, and snippets.

@mishak87
Last active August 29, 2015 13:55
Show Gist options
  • Save mishak87/8693072 to your computer and use it in GitHub Desktop.
Save mishak87/8693072 to your computer and use it in GitHub Desktop.
Litecoin BAMT 1.3 driver update

Order of things...

./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
#!/bin/sh
VERSION=6.0
cd /tmp
unzip ADL_SDK_$VERSION.zip
cp /tmp/include/* /opt/miners/cgminer/ADL_SDK
#!/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/
#!/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
#!/bin/sh
cd /opt/miners/cgminer
make clear
make
#!/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