Skip to content
Snippets Groups Projects
  1. Jun 21, 2010
  2. Jun 20, 2010
  3. May 03, 2010
  4. Mar 21, 2010
  5. Jan 17, 2010
    • Dirk Behme's avatar
      Make getenv_IPaddr() global · 6a45e384
      Dirk Behme authored
      
      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: default avatarDirk Behme <dirk.behme@googlemail.com>
      Acked-by: default avatarBen Warren <biggerbadderben@gmail.com>
      6a45e384
  6. Dec 14, 2009
  7. Dec 07, 2009
    • Evan Samanas's avatar
      nfs: NfsTimeout() updates · aabb8cb0
      Evan Samanas authored
      
      - NfsTimeout() does not correctly update the NFS timeout value which
        results in NfsTimeout() only being called once in certain situations.
        This can result in the 'nfs' command hanging indefinetly.  For
        example, the command:
      
          nfs 192.168.0.1:/home/user/file
      
        will not exit until ctrl-c is pressed if 192.168.0.1 does not have an
        NFS server running.
      
        This issue is resolved by reinitializting the NFS timeout value inside
        NfsTimeout() when a timeout occurs.
      
      - Make the 'nfs' command print the 'T' character when a timeout occurs.
        Previously there was no indication that timeouts were occuring.
      
      - Mimic the 'tftpboot' command and when a download fails print "Retry
        count exceeded; starting again", and restart the download taking the
        'netretry' environment variable into account.
      
      Signed-off-by: default avatarEvan Samanas <esamanas@xes-inc.com>
      Signed-off-by: default avatarPeter Tyser <ptyser@xes-inc.com>
      
      Tested on TQM8xxL.
      
      Tested by: Wolfgang Denk <wd@denx.de>
      
      Tested on MPC8527DS.
      
      Tested by: Ed Swarthout <Ed.Swarthout@freescale.com>
      aabb8cb0
    • Ed Swarthout's avatar
      fix nfs symlink name corruption · f64ef9bb
      Ed Swarthout authored
      
      An off by one error may cause nfs readlink lookup fail if
      nfs_path_buff has non-zero data from a previous use.
      
      Loading: *** ERROR: File lookup fail
      
      Signed-off-by: default avatarEd Swarthout <Ed.Swarthout@freescale.com>
      f64ef9bb
  8. Nov 24, 2009
  9. Sep 11, 2009
  10. Aug 25, 2009
  11. Aug 10, 2009
  12. Aug 08, 2009
  13. Jul 23, 2009
  14. Jun 15, 2009
  15. May 15, 2009
  16. Apr 27, 2009
  17. Apr 20, 2009
    • Michael Zaidman's avatar
      NetLoop initialization bug · 3c172c4f
      Michael Zaidman authored
      
      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: default avatarMichael Zaidman <michael.zaidman@gmail.com>
      Signed-off-by: default avatarBen Warren <biggerbadderben@gmail.com>
      3c172c4f
  18. Mar 20, 2009
  19. Feb 23, 2009
  20. Feb 17, 2009
  21. Feb 10, 2009
  22. Jan 29, 2009
Loading