Removed some obsolete stuff + Pushing things in the direction of openocd.texi
[fw/openocd] / doc / INSTALL.txt
diff --git a/doc/INSTALL.txt b/doc/INSTALL.txt
new file mode 100644 (file)
index 0000000..3732035
--- /dev/null
@@ -0,0 +1,204 @@
+TODO!!! this should be merged into openocd.texi!!!\r
+\r
+\r
+Prerequisites\r
+=============\r
+\r
+When building with support for FTDI FT2232 based devices, you need at least\r
+one of the following libraries:\r
+\r
+- libftdi (http://www.intra2net.com/opensource/ftdi/)\r
+- libftd2xx (http://www.ftdichip.com/Drivers/D2XX.htm)\r
+\r
+On Windows, you need either Cygwin or MinGW, but compilation for MinGW is also\r
+possible using a Cygwin host.\r
+\r
+Basic Installation\r
+==================\r
+\r
+   OpenOCD is distributed without autotools generated files, i.e. without a \r
+configure script. Run ./bootstrap in the openocd directory to have all\r
+necessary files generated.\r
+\r
+   You have to explicitly enable desired JTAG interfaces during configure:\r
+\r
+./configure --enable-parport --enable-ft2232-libftdi (OR  --enable-ft2232-ftd2xx) \\r
+            --enable-amtjtagaccel\r
+\r
+   Under Windows/Cygwin, only the ftd2xx driver is supported for FT2232 based\r
+devices. You have to specify the location of the FTDI driver package with the\r
+--with-ftd2xx=/full/path/name option.\r
+\r
+Under Linux you can choose to build the parport driver with support for\r
+/dev/parportN instead of the default access with direct port I/O using\r
+--enable-parport_ppdev. This has the advantage of running OpenOCD without root\r
+privileges at the expense of a slight performance decrease. This is also\r
+available on FreeBSD using PPI, but the naming of the devices is different.\r
+\r
+Generic installation instructions\r
+=================================\r
+\r
+   These are generic installation instructions.\r
+\r
+   The `configure' shell script attempts to guess correct values for\r
+various system-dependent variables used during compilation.  It uses\r
+those values to create a `Makefile' in each directory of the package.\r
+It may also create one or more `.h' files containing system-dependent\r
+definitions.  Finally, it creates a shell script `config.status' that\r
+you can run in the future to recreate the current configuration, a file\r
+`config.cache' that saves the results of its tests to speed up\r
+reconfiguring, and a file `config.log' containing compiler output\r
+(useful mainly for debugging `configure').\r
+\r
+   If you need to do unusual things to compile the package, please try\r
+to figure out how `configure' could check whether to do them, and mail\r
+diffs or instructions to the address given in the `README' so they can\r
+be considered for the next release.  If at some point `config.cache'\r
+contains results you don't want to keep, you may remove or edit it.\r
+\r
+   The file `configure.in' is used to create `configure' by a program\r
+called `autoconf'.  You only need `configure.in' if you want to change\r
+it or regenerate `configure' using a newer version of `autoconf'.\r
+\r
+The simplest way to compile this package is:\r
+\r
+  1. `cd' to the directory containing the package's source code and type\r
+     `./configure' to configure the package for your system.  If you're\r
+     using `csh' on an old version of System V, you might need to type\r
+     `sh ./configure' instead to prevent `csh' from trying to execute\r
+     `configure' itself.\r
+\r
+     Running `configure' takes a while.  While running, it prints some\r
+     messages telling which features it is checking for.\r
+\r
+  2. Type `make' to compile the package.\r
+\r
+  3. Type `make install' to install the programs and any data files and\r
+     documentation.\r
+\r
+  4. You can remove the program binaries and object files from the\r
+     source code directory by typing `make clean'.  \r
+\r
+Compilers and Options\r
+=====================\r
+\r
+   Some systems require unusual options for compilation or linking that\r
+the `configure' script does not know about.  You can give `configure'\r
+initial values for variables by setting them in the environment.  Using\r
+a Bourne-compatible shell, you can do that on the command line like\r
+this:\r
+     CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure\r
+\r
+Or on systems that have the `env' program, you can do it like this:\r
+     env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure\r
+\r
+Compiling For Multiple Architectures\r
+====================================\r
+\r
+   You can compile the package for more than one kind of computer at the\r
+same time, by placing the object files for each architecture in their\r
+own directory.  To do this, you must use a version of `make' that\r
+supports the `VPATH' variable, such as GNU `make'.  `cd' to the\r
+directory where you want the object files and executables to go and run\r
+the `configure' script.  `configure' automatically checks for the\r
+source code in the directory that `configure' is in and in `..'.\r
+\r
+   If you have to use a `make' that does not supports the `VPATH'\r
+variable, you have to compile the package for one architecture at a time\r
+in the source code directory.  After you have installed the package for\r
+one architecture, use `make distclean' before reconfiguring for another\r
+architecture.\r
+\r
+Installation Names\r
+==================\r
+\r
+   By default, `make install' will install the package's files in\r
+`/usr/local/bin', `/usr/local/man', etc.  You can specify an\r
+installation prefix other than `/usr/local' by giving `configure' the\r
+option `--prefix=PATH'.\r
+\r
+   You can specify separate installation prefixes for\r
+architecture-specific files and architecture-independent files.  If you\r
+give `configure' the option `--exec-prefix=PATH', the package will use\r
+PATH as the prefix for installing programs and libraries.\r
+Documentation and other data files will still use the regular prefix.\r
+\r
+   If the package supports it, you can cause programs to be installed\r
+with an extra prefix or suffix on their names by giving `configure' the\r
+option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.\r
+\r
+Optional Features\r
+=================\r
+\r
+   Some packages pay attention to `--enable-FEATURE' options to\r
+`configure', where FEATURE indicates an optional part of the package.\r
+They may also pay attention to `--with-PACKAGE' options, where PACKAGE\r
+is something like `gnu-as' or `x' (for the X Window System).  The\r
+`README' should mention any `--enable-' and `--with-' options that the\r
+package recognizes.\r
+\r
+   For packages that use the X Window System, `configure' can usually\r
+find the X include and library files automatically, but if it doesn't,\r
+you can use the `configure' options `--x-includes=DIR' and\r
+`--x-libraries=DIR' to specify their locations.\r
+\r
+Specifying the System Type\r
+==========================\r
+\r
+   There may be some features `configure' can not figure out\r
+automatically, but needs to determine by the type of host the package\r
+will run on.  Usually `configure' can figure that out, but if it prints\r
+a message saying it can not guess the host type, give it the\r
+`--host=TYPE' option.  TYPE can either be a short name for the system\r
+type, such as `sun4', or a canonical name with three fields:\r
+     CPU-COMPANY-SYSTEM\r
+\r
+See the file `config.sub' for the possible values of each field.  If\r
+`config.sub' isn't included in this package, then this package doesn't\r
+need to know the host type.\r
+\r
+   If you are building compiler tools for cross-compiling, you can also\r
+use the `--target=TYPE' option to select the type of system they will\r
+produce code for and the `--build=TYPE' option to select the type of\r
+system on which you are compiling the package.\r
+\r
+Sharing Defaults\r
+================\r
+\r
+   If you want to set default values for `configure' scripts to share,\r
+you can create a site shell script called `config.site' that gives\r
+default values for variables like `CC', `cache_file', and `prefix'.\r
+`configure' looks for `PREFIX/share/config.site' if it exists, then\r
+`PREFIX/etc/config.site' if it exists.  Or, you can set the\r
+`CONFIG_SITE' environment variable to the location of the site script.\r
+A warning: not all `configure' scripts look for a site script.\r
+\r
+Operation Controls\r
+==================\r
+\r
+   `configure' recognizes the following options to control how it\r
+operates.\r
+\r
+`--cache-file=FILE'\r
+     Use and save the results of the tests in FILE instead of\r
+     `./config.cache'.  Set FILE to `/dev/null' to disable caching, for\r
+     debugging `configure'.\r
+\r
+`--help'\r
+     Print a summary of the options to `configure', and exit.\r
+\r
+`--quiet'\r
+`--silent'\r
+`-q'\r
+     Do not print messages saying which checks are being made.\r
+\r
+`--srcdir=DIR'\r
+     Look for the package's source code in directory DIR.  Usually\r
+     `configure' can determine that directory automatically.\r
+\r
+`--version'\r
+     Print the version of Autoconf used to generate the `configure'\r
+     script, and exit.\r
+\r
+`configure' also accepts some other, not widely useful, options.\r
+\r