Made openocd work with ft2232 jtag chipset, that of the Sheevaplug.

svn path=/nixpkgs/trunk/; revision=17407
This commit is contained in:
Lluís Batlle i Rossell
2009-09-24 21:28:27 +00:00
parent 15afc2fa04
commit f9035543d5
3 changed files with 31 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
{stdenv, fetchurl}:
{stdenv, fetchurl, libftdi}:
stdenv.mkDerivation {
name = "openocd-0.2.0";
@@ -8,6 +8,11 @@ stdenv.mkDerivation {
sha256 = "1qdl2a2mxhl07xz32l9nxjvmf16b0717aqlrhd28akn6si3jps54";
};
configureFlags = [ "--enable-ft2232_libftdi" "--disable-werror" ];
buildInputs = [ libftdi ];
meta = {
homepage = http://openocd.berlios.de;
description = "Open On Chip Debugger";