1. 12 10月, 2010 1 次提交
  2. 21 6月, 2010 1 次提交
  3. 04 5月, 2010 1 次提交
  4. 18 1月, 2010 1 次提交
    • D
      Make getenv_IPaddr() global · 6a45e384
      Dirk Behme 提交于
      There are boards out there that do not have network support in
      U-Boot (CONFIG_CMD_NET not set), but they do so in Linux. This
      makes it desirable to be able to port network configuration (like
      the IP address) to the Linux kernel.
      
      We should not make the passing of the IP configuration to Linux
      dependent on U-Boot features / settings.
      
      For this, make getenv_IPaddr() global. This fixes build error
      
      u-boot/lib_xxx/board.c:360: undefined reference to `getenv_IPaddr'
      
      on various architectures.
      Signed-off-by: NDirk Behme <dirk.behme@googlemail.com>
      Acked-by: NBen Warren <biggerbadderben@gmail.com>
      6a45e384
  5. 14 12月, 2009 1 次提交
  6. 25 11月, 2009 1 次提交
  7. 26 8月, 2009 1 次提交
    • A
      net: defragment IP packets · 5cfaa4e5
      Alessandro Rubini 提交于
      The defragmenting code is enabled by CONFIG_IP_DEFRAG; the code is
      useful for TFTP and NFS transfers.  The user can specify the maximum
      defragmented payload as CONFIG_NET_MAXDEFRAG (default 16k).
      Since NFS has a bigger per-packet overhead than TFTP, the static
      reassembly buffer can hold CONFIG_NET_MAXDEFRAG + the NFS overhead.
      
      The packet buffer is used as an array of "hole" structures, acting as
      a double-linked list. Each new fragment can split a hole in two,
      reduce a hole or fill a hole. No support is there for a fragment
      overlapping two diffrent holes (i.e., thre new fragment is across an
      already-received fragment).
      Signed-off-by: NAlessandro Rubini <rubini@gnudd.com>
      Signed-off-by: NBen Warren <biggerbadderben@gmail.com>
      5cfaa4e5
  8. 08 8月, 2009 1 次提交
    • R
      minor debug cleanups in ./net · 0ebf04c6
      Robin Getz 提交于
       Minor ./net cleanups - no functional changes
        - change #ifdef DEBUG printf(); #endif to just debug()
        - changed __FUNCTION__ to __func__
        - got rid of extra whitespace between function and opening brace
        - removed unnecessary braces on if statements
      
       gcc dead code elimination should make this functionally/size equivalent
       when DEBUG is not defined. (confirmed on Blackfin, with gcc 4.3.3).
      Signed-off-by: NRobin Getz <rgetz@blackfin.uclinux.org>
      Signed-off-by: NBen Warren <biggerbadderben@gmail.com>
      0ebf04c6
  9. 23 7月, 2009 4 次提交
  10. 16 5月, 2009 1 次提交
  11. 20 4月, 2009 1 次提交
    • M
      NetLoop initialization bug · 3c172c4f
      Michael Zaidman 提交于
      The patch fixes the bug of partial initialization of global network
      parameters.
      
      Upon u-boot's start up the first ping command causes a failure of the
      consequent TFTP command. It happens in the recently added mechanism of
      the NetLoop initialization where initialization of global network
      parameters is separated in the NetInitLoop routine which is called per
      env_id change. Thus, ping request will initialize the network parameters
      necessary for ping operation only, afterwards the env_changed_id will be
      set to the env_id that will prevent all following initialization requests
      from other protocols.
      The problem is that the initialized by ping subset of network parameters
      is not sufficient for other protocols and particularly for TFTP which
      requires the NetServerIp also.
      Signed-off-by: NMichael Zaidman <michael.zaidman@gmail.com>
      Signed-off-by: NBen Warren <biggerbadderben@gmail.com>
      3c172c4f
  12. 21 3月, 2009 2 次提交
  13. 23 2月, 2009 1 次提交
  14. 29 1月, 2009 1 次提交
  15. 07 12月, 2008 1 次提交
  16. 05 12月, 2008 2 次提交
  17. 19 10月, 2008 2 次提交
  18. 14 7月, 2008 1 次提交
  19. 13 7月, 2008 1 次提交
  20. 11 7月, 2008 1 次提交
  21. 05 6月, 2008 1 次提交
  22. 21 5月, 2008 1 次提交
    • W
      Big white-space cleanup. · 53677ef1
      Wolfgang Denk 提交于
      This commit gets rid of a huge amount of silly white-space issues.
      Especially, all sequences of SPACEs followed by TAB characters get
      removed (unless they appear in print statements).
      
      Also remove all embedded "vim:" and "vi:" statements which hide
      indentation problems.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      53677ef1
  23. 29 4月, 2008 1 次提交
    • G
      net: make ARP timeout configurable · 40cb90ee
      Guennadi Liakhovetski 提交于
      Currently the timeout waiting for an ARP reply is hard set to 5 seconds.
      On i.MX31ADS due to a hardware "strangeness" up to four first IP packets
      to the boards get lost, which typically are ARP replies. By configuring
      the timeout to a lower value we significantly improve the first network
      transfer time on this board. The timeout is specified in milliseconds,
      later internally it is converted to deciseconds, because it has to be
      converted to hardware ticks, and CFG_HZ ranges from 900 to 27000000 on
      different boards.
      Signed-off-by: NGuennadi Liakhovetski <lg@denx.de>
      Signed-off-by: NBen Warren <biggerbadderben@gmail.com>
      40cb90ee
  24. 04 1月, 2008 2 次提交
  25. 18 11月, 2007 1 次提交
  26. 12 9月, 2007 1 次提交
  27. 14 8月, 2007 2 次提交
  28. 11 7月, 2007 1 次提交
  29. 10 7月, 2007 2 次提交
  30. 04 7月, 2007 1 次提交
  31. 08 3月, 2007 1 次提交