Advertisement
Guest User

Compiling RocketRaid 2680 drivers for Ubuntu 12.04 LTS

a guest
Aug 18th, 2012
1,020
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. Compiling / building RocketRaid 2680 drivers for Ubuntu 12.04 LTS Kernel 3.2
  2. Drivers available from http://www.highpoint-tech.com/USA_new/rr2600_download.htm
  3. to download sourcecode for v1.8 drivers:
  4. http://www.highpoint-tech.com/BIOS_Driver/rr268x/linux/RR268x-Linux-Src-v1.8-120713-1146.tar.gz
  5. Once download is complete, copy or move the source code package (RR268x-Linux-Src-v1.8-120713-1146.tar.gz) from wherever it was downloaded to, into your home directory
  6. Then in the terminal, run:
  7. # sudo apt-get install gedit
  8. # cd ~
  9. # tar -zxf RR268x-Linux-Src-v1.8-120713-1146.tar.gz
  10. # cd rr268x-linux-src-v1.8/
  11. # gedit dkms.conf
  12. Then paste in the following:
  13. MAKE="make -C product/rr2680/linux/ KERNELDIR=/lib/modules/${kernelver}/build"
  14. CLEAN="make -C product/rr2680/linux/ clean"
  15. BUILT_MODULE_NAME=rr2680
  16. DEST_MODULE_LOCATION=/kernel/drivers/scsi/
  17. BUILT_MODULE_LOCATION=product/rr2680/linux/
  18. PACKAGE_NAME=rr2680
  19. PACKAGE_VERSION=1.8
  20. AUTOINSTALL=yes
  21. REMAKE_INITRD=yes
  22.  
  23. Then close and save, and run the following:
  24. # sudo cp -R . /usr/src/rr2680-1.8
  25. # sudo dkms add -m rr2680 -v 1.8
  26. # sudo dkms build -m rr2680 -v 1.8
  27. # sudo dkms install -m rr2680 -v 1.8
  28.  
  29. Thanks so much to CharlesA from http://ubuntuforums.org/forumdisplay.php?f=327
  30. This was adapted directly from your solution, which worked brilliantly!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement