Browse Source

Update documentation for X6500

Luke Dashjr 13 years ago
parent
commit
afca2c178e
3 changed files with 16 additions and 9 deletions
  1. 5 3
      README
  2. 4 1
      miner.c
  3. 7 5
      windows-build.txt

+ 5 - 3
README

@@ -52,7 +52,7 @@ Dependencies:
 	(This is only required for multi-FPGA auto-detection on Linux)
 
 	libusb headers
-	(This is only required for ZTEX support)
+	(This is only required for Ztex and X6500 support)
 
 
 BFGMiner specific configuration options:
@@ -62,6 +62,7 @@ BFGMiner specific configuration options:
 	--disable-bitforce      Compile support for BitForce (default enabled)
 	--disable-icarus        Compile support for Icarus (default enabled)
 	--disable-modminer      Compile support for ModMiner (default enabled)
+	--disable-x6500         Compile support for X6500 (default enabled)
 	--disable-ztex          Compile support for Ztex (default if libusb)
 	--enable-scrypt         Compile support for scrypt mining (default disabled)
 	--without-curses        Compile support for curses TUI (default enabled)
@@ -217,7 +218,7 @@ SCRYPT only options:
 See SCRYPT-README for more information regarding (non-bitcoin) scrypt mining.
 
 
-FPGA mining boards(BitForce, Icarus, ModMiner, Ztex) only options:
+FPGA mining boards (BitForce, Icarus, ModMiner, X6500, Ztex) only options:
 
 --scan-serial|-S <arg> Serial port to probe for FPGA mining device
 
@@ -893,7 +894,8 @@ working in the logs?
 A: http://us.php.net/manual/en/sockets.installation.php
 
 Q: What is a PGA?
-A: At the moment, BFGMiner supports 4 FPGAs: BitForce, Icarus, ModMiner, and Ztex.
+A: At the moment, BFGMiner supports 5 FPGAs: BitForce, Icarus, ModMiner, X6500,
+and Ztex.
 They are Field-Programmable Gate Arrays that have been programmed to do Bitcoin
 mining. Since the acronym needs to be only 3 characters, the "Field-" part has
 been skipped.

+ 4 - 1
miner.c

@@ -1084,7 +1084,7 @@ static struct opt_table opt_config_table[] = {
 		     set_intensity, NULL, NULL,
 		     "Intensity of GPU scanning (d or " _MIN_INTENSITY_STR " -> " _MAX_INTENSITY_STR ", default: d to maintain desktop interactivity)"),
 #endif
-#if defined(HAVE_OPENCL) || defined(USE_MODMINER) || defined(USE_ZTEX)
+#if defined(HAVE_OPENCL) || defined(USE_MODMINER) || defined(USE_X6500) || defined(USE_ZTEX)
 	OPT_WITH_ARG("--kernel-path|-K",
 		     opt_set_charp, opt_show_charp, &opt_kernel_path,
 	             "Specify a path to where bitstream and kernel files are"),
@@ -1461,6 +1461,9 @@ static char *opt_verusage_and_exit(const char *extra)
 #ifdef USE_MODMINER
 		"modminer "
 #endif
+#ifdef USE_X6500
+		"x6500 "
+#endif
 #ifdef USE_ZTEX
 		"ztex "
 #endif

+ 7 - 5
windows-build.txt

@@ -174,7 +174,8 @@ If you simply just want to update the source after you have already cloned, type
 Now you can get the latest source directly from github.
 
 **************************************************************************************
-* Optional - Install libusb if you need auto USB device detection; required for Ztex *
+* Optional - Install libusb if you need auto USB device detection                    *
+* Required for Ztex and X6500                                                        *
 **************************************************************************************
 Go to this url ==> http://libusbx.org/
 Click on the "Downloads" tab.
@@ -195,10 +196,11 @@ You will have to copy "libusb-1.0.dll" to your working BFGMiner binary directory
 --enable-cpumining      Build with cpu mining support(default disabled)
 --disable-opencl        Build without support for OpenCL (default enabled)
 --disable-adl           Build without ADL monitoring (default enabled)
---enable-bitforce       Compile support for BitForce FPGAs(default disabled)
---enable-icarus         Compile support for Icarus Board(default disabled)
---enable-modminer       Compile support for ModMiner FPGAs(default disabled)
---enable-ztex           Compile support for Ztex Board(default disabled)
+--disable-bitforce      Compile support for BitForce (default enabled)
+--disable-icarus        Compile support for Icarus (default enabled)
+--disable-modminer      Compile support for ModMiner (default enabled)
+--disable-x6500         Compile support for X6500 (default enabled)
+--disable-ztex          Compile support for Ztex (default if libusb)
 --enable-scrypt         Compile support for scrypt litecoin mining (default disabled)
 --without-curses        Compile support for curses TUI (default enabled)
 --without-libudev       Autodetect FPGAs using libudev (default enabled)