1. 12 Jan, 2010 1 commit
  2. 09 Jan, 2010 1 commit
  3. 08 Jan, 2010 1 commit
  4. 07 Jan, 2010 2 commits
  5. 06 Jan, 2010 1 commit
  6. 24 Dec, 2009 3 commits
  7. 13 Dec, 2009 1 commit
    • Carl-Daniel Hailfinger's avatar
      Internal (onboard) programming was the only feature which could not be disabled · 66ef4e5f
      Carl-Daniel Hailfinger authored
      
      Make various pieces of code conditional on support for internal
      programming. Code shared between PCI device programmers and onboard
      programming is now conditional as well.
      
      It is now possible to build only with dummy support:
      make CONFIG_INTERNAL=no CONFIG_NIC3COM=no CONFIG_SATASII=no
      CONFIG_DRKAISER=no CONFIG_SERPROG=no CONFIG_FT2232SPI=no
      
      This allows building for a specific use case only, and it also
      facilitates porting to a new architecture because it is possible to
      focus on highlevel code only.
      
      Note: Either internal or dummy programmer needs to be compiled in due to
      the current behaviour of always picking a default programmer if -p is
      not specified. Picking an arbitrary external programmer as default  
      wouldn't make sense.
      
      Build and runtime tested in all 1024 possible build combinations. The
      only failures are by design as mentioned above.
      
      Corresponding to flashrom svn r797.
      Signed-off-by: default avatarCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
      Acked-by: default avatarSean Nelson <audiohacked@gmail.com>
      66ef4e5f
  8. 24 Nov, 2009 2 commits
  9. 23 Nov, 2009 1 commit
  10. 16 Nov, 2009 2 commits
  11. 03 Oct, 2009 1 commit
  12. 01 Oct, 2009 1 commit
  13. 30 Sep, 2009 1 commit
    • Uwe Hermann's avatar
      Add initial support for flashing some NVIDIA graphics cards · 2bc98f6c
      Uwe Hermann authored
      
      The new option is '-p gfxnvidia', rest of the interface is as usual.
      
      I tested a successful identify and read on a "RIVA TNT2 Model 64/Model 64 Pro"
      card for now, erase and write did NOT work properly so far!
      
      Please do not attempt to write/erase cards yet, unless you can recover!
      
      In addition to the NVIDIA handling code it was required to call
      programmer_shutdown() in a lot more places, otherwise the graphics card
      will be disabled in the init function, but never enabled again as the
      shutdown function is not called.
      The shutdown handling may be changed to use atexit() later.
      
      Corresponding to flashrom svn r737.
      Signed-off-by: default avatarUwe Hermann <uwe@hermann-uwe.de>
      Acked-by: default avatarLuc Verhaegen <libv@skynet.be>
      2bc98f6c
  14. 28 Sep, 2009 1 commit
  15. 16 Sep, 2009 2 commits
  16. 05 Sep, 2009 1 commit
  17. 02 Sep, 2009 2 commits
  18. 31 Aug, 2009 1 commit
  19. 17 Aug, 2009 1 commit
  20. 12 Aug, 2009 1 commit
  21. 09 Aug, 2009 1 commit
  22. 10 Jul, 2009 1 commit
  23. 30 Jun, 2009 1 commit
  24. 23 Jun, 2009 2 commits
  25. 20 Jun, 2009 1 commit
    • Uwe Hermann's avatar
      Various wiki output changes · a2d05012
      Uwe Hermann authored
      
       - Move board_info_url struct to print.c, doesn't have to be global.
      
       - Simplify flashrom.c a bit by moving stuff to print.c.
         Eliminate two now-useless mini-functions in print.c.
      
       - Add a note that the wiki page contents are semi-automatically generated.
      
       - Mention date of last wiki page update as well as the flashrom revision
         that was used to generate the wiki output.
      
       - Also generate list of supported laptops in -z output now.
      
       - Add some more board URLs.
      
       - Add a boards_notes[] table to allow for arbitrary footnotes/comments for
         each board in the table. All notes will automatically be turned into
         wiki footnotes with correct numbers and will appear at the end of the
         respective table.
      
      Corresponding to flashrom svn r615.
      Signed-off-by: default avatarUwe Hermann <uwe@hermann-uwe.de>
      Acked-by: default avatarUwe Hermann <uwe@hermann-uwe.de>
      a2d05012
  26. 19 Jun, 2009 1 commit
  27. 17 Jun, 2009 1 commit
  28. 16 Jun, 2009 2 commits
  29. 15 Jun, 2009 1 commit
  30. 14 Jun, 2009 1 commit
  31. 12 Jun, 2009 1 commit
    • Carl-Daniel Hailfinger's avatar
      This patch introduces two new targets which are designed to make the life of packagers easier · a23041cc
      Carl-Daniel Hailfinger authored
      
      In particular, it should no longer be necessary to patch the makefile
      for hassle-free compilation.
      
      The targets are:
      make export
      make tarball
      Both preserve svn revisions and the exported tree does not depend on
      subversion in any way or shape.
      
      Documentation for this feature has been added to README.
      
      We need this for five reasons:
      1. Packagers currently have to patch flashrom source to compile it on
      systems without subversion. We should make it easier for them.
      2. Snapshot tarballs currently have a .svn 1.5 directory included but
      this will cause errors for users with older svn 1.4. Not requiring
      subversion for snapshot compilation is best.
      3. Since packagers seldom the svn revision in their fixup patches, some
      packages out there have incorrect or no revision, only major version
      numbers.
      4. Releasing a new version of flashrom needs too many changes to the
      makefile which have to be reverted instantly after the release. That is
      unnecessary churn.
      5. Making a release is easy with the change. Update the major version,
      then run "make tarball".
      
      Corresponding to flashrom svn r587.
      
      Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>  
      Acked-by: default avatarUwe Hermann <uwe@hermann-uwe.de>
      a23041cc