1. 11 1月, 2008 1 次提交
  2. 10 1月, 2008 32 次提交
  3. 09 1月, 2008 7 次提交
    • W
      Coding Style cleanup, update CHANGELOG · 6007f325
      Wolfgang Denk 提交于
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      6007f325
    • M
      fix easylogo on big endian dev systems · fc6414ec
      Mike Frysinger 提交于
      didnt realize how out of shape easylogo actually was until i tried using it.
      this patch does byte swapping as need be on the input tga header since the tga
      is in little endian but the host could just as well be big endian.  i didnt
      bother using bswap macros or such stuff from system headers as nothing in
      POSIX dictates byte swapping functionality.
      Signed-Off-By: NMike Frysinger <vapier@gentoo.org>
      fc6414ec
    • M
      cleanup easylogo · 38d299c2
      Mike Frysinger 提交于
      - make the Makefile not suck
      - include proper headers for prototypes
      - fix obvious broken handling of strchr() when handling '.' in filenames
      Signed-Off-By: NMike Frysinger <vapier@gentoo.org>
      38d299c2
    • R
      Fix build problems under Cygwin · 883e3925
      raptorbrino@aim.com 提交于
      This patch allows u-boot to build without error in a cygwin
      environment.  Cygwin does not define __u64 in it's
      include/asm/types.h file.  The -idirafter flag in the u-boot
      build causes the inclusion of the cygwin types.h file as opposed
      to u-bot/include/asm/types.h file which does define __u64.
      Subsequently, sha1.c compile fails due to unknown symbol.
      Signed-off-by: NBrian Miller <raptorbrino@netscape.net>
      883e3925
    • H
      cmd_bmp: Add support for displaying gzip compressed bmps · 43ef1c38
      Hans-Christian Egtvedt 提交于
      The existing code can show information about a gzip compressed BMP
      image, but can't actually display it.
      
      Therefore, move the decompression code out of bmp_info() and use it in
      bmp_display() as well in order to display a compressed BMP image.
      
      Also, clean things up a bit and fix a memory leak while we're at it.
      
      [hskinnemoen@atmel.com: a bit of refactoring]
      Signed-off-by: NHaavard Skinnemoen <hskinnemoen@atmel.com>
      43ef1c38
    • G
      Fix and optimize MII operations on FEC (MPC8xx) controllers · d197ffd8
      Guennadi Liakhovetski 提交于
      This patch fixes several issues at least on a MPC885 based system with two
      FEC interfaces used in MII mode.
      
      1. PHY discovery should first read PHY_PHYIDR2 register and only then
         PHY_PHYIDR1 like cpu/mpc8xx/fec.c::mii_discover_phy() does it,
         otherwise the values read are wrong. Also notice, that PHY discovery
         cannot work on MPC88x / MPC87x in setups with both FECs active at all
         in its present form, because for both interfaces the registers from FEC
         1 are used to communicate over MII.
      
      2. Remove code duplication for resetting the FEC by isolating it into a
         separate function.
      
      3. Initialize MII on FEC 1 when communicating over FEC 2 in fec_init().
      
      4. Optimize mii_init() to only reset the FEC 1 controller once.
      
      5. Fix a typo in mii_init() using index i instead of j thus potentially
         leading to unpredictable results.
      Signed-off-by: NGuennadi Liakhovetski <lg@denx.de>
      d197ffd8
    • G
      Fix endianness conversions in rtl8169 driver · 6a5e1d75
      Guennadi Liakhovetski 提交于
      It is unclear on what platforms this driver has been tested, since
      noone up to now defines CONFIG_RTL8169 in the board configuration
      header. Now it has been fixed for a big-endian mpc8241 based
      linkstation platform. This patch presents the necessary endianness
      conversion fixes.
      Signed-off-by: NGuennadi Liakhovetski <lg@denx.de>
      6a5e1d75