Skip to content
Snippets Groups Projects
  1. Jun 24, 2009
  2. Jun 20, 2009
  3. Jun 17, 2009
  4. Jun 09, 2009
  5. Jun 08, 2009
    • oharboe's avatar
      update zy1000 to latest minidriver work · 3245a0cd
      oharboe authored
      git-svn-id: svn://svn.berlios.de/openocd/trunk@2132 b42882b7-edfa-0310-969c-e2dbd0fdcd60
      3245a0cd
    • oharboe's avatar
      Zach Welch wrote a fix for configure problems under Cygwin. · 76d9c3d5
      oharboe authored
      ltmain.sh is added to svn ignore
      
      git-svn-id: svn://svn.berlios.de/openocd/trunk@2131 b42882b7-edfa-0310-969c-e2dbd0fdcd60
      76d9c3d5
    • zwelch's avatar
      Adjust whitespace in configure script: use two spaces for indent. · a221892f
      zwelch authored
      git-svn-id: svn://svn.berlios.de/openocd/trunk@2106 b42882b7-edfa-0310-969c-e2dbd0fdcd60
      a221892f
    • zwelch's avatar
      Reorder configure script macros: · 5ee0379b
      zwelch authored
      - Check for a compiler before looking for libraries or header files.
      - Initialize automake before calling other AM_ macros.
      - Disable libtool shared libraries by default.
      - Remove checks for unused C++, Fortran, and Java compilers.
      - Remove redundant AC_CANONICAL_HOST; called by AC_PROG_LIBTOOL.
      
      
      git-svn-id: svn://svn.berlios.de/openocd/trunk@2105 b42882b7-edfa-0310-969c-e2dbd0fdcd60
      5ee0379b
    • zwelch's avatar
      Rework parallel port configure script option handling: · 35f7c4e4
      zwelch authored
      - Move AC_ARG_ENABLE for secondary parallel port options:
        - These macros cause their configure options to appear unconditionally,
          so they should not be placed inside conditional logic.
        - Groups them with primary parallel port driver option.
      - Update these options to show '-' instead of '_'; both still work.
      - Update command help text to show host architecture/OS requirements.
      - Display a warning when these options have been provided and the
        configure script will ignore the setting that the user specified.
      
      
      git-svn-id: svn://svn.berlios.de/openocd/trunk@2104 b42882b7-edfa-0310-969c-e2dbd0fdcd60
      35f7c4e4
    • zwelch's avatar
      Finish off the dummy minidriver integration: · f84c78a2
      zwelch authored
      - Try to disambiguates minidriver options from "standard" driver options.
        - Make minidummy symbols more explict about being a minidriver.
        - Move minidummy.c into minidummy directory to put it with its header.
      
      In configure.in:
      - Improve configuration option to allow new minidriver implementations:
        - Change option from --enable-minidummy to --enable-minidriver-dummy.
        - Move it to the end of the list of options.
        - Provides a clear pattern for future minidrivers.
      - Update handling of HAVE_JTAG_MINIDRIVER_H:
        - Check for external jtag_minidriver.h only with --enable-ecosboard.
        - Otherwise, define it when --enable-minidriver-dummy is provided.
      - Add check to ensure only one minidriver is enabled.
      - When a minidriver is enabled, warn user that standard drivers are not built.
      - Use proper AC_DEFINE semantics with MINIDRIVER_DUMMY.
      
      In src/jtag/Makefile.am:
      - Restructure handling of minidummy source files.
      - Include minidummy driver header in the distribution.
      
      In src/jtag/jtag.c:
      - Restructure preprocessor logic to include:
        - only one minidriver, or
        - all configured standard drivers.
      
      
      git-svn-id: svn://svn.berlios.de/openocd/trunk@2102 b42882b7-edfa-0310-969c-e2dbd0fdcd60
      f84c78a2
  6. Jun 07, 2009
  7. Jun 03, 2009
  8. Jun 02, 2009
  9. May 27, 2009
    • zwelch's avatar
      Move TCL script files -- Step 1 of 2: · 140d6c8e
      zwelch authored
      - Move src/target/{interface,target,board,test}/ into src/tcl/
      - Remove existing rules in src/Makefile.am and src/target/Makefile.am.
      - Add Makefile.am handling of *.cfg and *.tcl files in top Makefile.am:
        - Add dist-hook to include such files under src/tcl in the distribution.
        - Add install-data-hook to install contents of '$(top_srcdir)/src/tcl/'.
        - Add uninstall-hook to remove the installed script files.
      - Change paths to (un)install script files in '$(pkgdatadir)/scripts'.
      
      
      git-svn-id: svn://svn.berlios.de/openocd/trunk@1918 b42882b7-edfa-0310-969c-e2dbd0fdcd60
      140d6c8e
  10. May 13, 2009
  11. May 12, 2009
  12. May 11, 2009
  13. May 10, 2009
  14. May 08, 2009
  15. May 06, 2009
  16. May 03, 2009
  17. May 02, 2009
    • zwelch's avatar
      Add configure check for usb.h; required by a USB drivers. · 85ecae28
      zwelch authored
      git-svn-id: svn://svn.berlios.de/openocd/trunk@1592 b42882b7-edfa-0310-969c-e2dbd0fdcd60
      85ecae28
    • zwelch's avatar
      Update autotools scripts to require automake 1.6. The configure.in script · 66add57a
      zwelch authored
      already required autoconf 2.59 (circa 2006), so there is no reason to
      support versions of automake older than 1.6 (circa 2002).
      
      The first part of this patch upgrades the configure.in script:
      
           1. Use current calling conventions for the AC_INIT and
              AM_INIT_AUTOMAKE macros, bringing their usage up-to-date with
              the version of autoconf already specified by AC_PREREQ.
           2. Add AC_CONFIG_SRCDIR macro, required by new version of AC_INIT.
           3. Automatically enable all of automake's warnings except Makefile
              portability (which OpenOCD violates by using GNU make's $(wildcard)).
              [[ While automake has its own -Werror option, I did not enabled it
              due to existing warnings. ]]
           4. Add the missing AM_PROG_C_O check, required by the build rules for
              openocd.o in src/Makefile.am.
           5. Adjust version number to show progress toward the next release.
           6. Include a bug reporting e-mail address to direct users to this list.
      
      This patch makes the following adjustments to the Makefile.am files:
      
           1. Update AUTOMAKE_OPTIONS to require automake version 1.6
           2. Rewrite all deprecated INCLUDES assignments as AM_CPPFLAGS
           3. Clean-up all AM_CPPFLAGS declarations to be patch-friendly.
           4. Remove vestigial references to $(all_includes)
           5. Remove erroneous references to @CPPFLAGS@ (only use AM_CPPFLAGS)
           6. Remove unused -I and -D directives in helper/, flash/, target/
      
      
      git-svn-id: svn://svn.berlios.de/openocd/trunk@1591 b42882b7-edfa-0310-969c-e2dbd0fdcd60
      66add57a
  18. Apr 29, 2009
Loading