24 Jul, 2013

1 commit


24 May, 2012

5 commits


16 May, 2012

2 commits


28 Oct, 2011

1 commit

  • The rarp code includes another instance of the auto_load logic, so call
    what is now net_auto_load() instead.

    This also fixes an incorrect call to TftpStart() which was never seen
    since apparently no boards enable rarp.

    Signed-off-by: Simon Glass
    Acked-by: Mike Frysinger

    Simon Glass
     

13 May, 2011

1 commit


14 Dec, 2009

1 commit


08 Aug, 2009

1 commit

  • 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: Robin Getz

    Signed-off-by: Ben Warren

    Robin Getz
     

19 Oct, 2008

1 commit

  • Enforce millisecond semantics of the first argument to NetSetTimeout() --
    the change is transparent for well-behaving boards (CFG_HZ == 1000 and
    get_timer() countiing in milliseconds).

    Rationale for this patch is to enable millisecond granularity for
    network-related timeouts, which is needed for the upcoming automatic
    software update feature.

    Summary of changes:
    - do not scale the first argument to NetSetTimeout() by CFG_HZ
    - change timeout values used in the networking code to milliseconds

    Signed-off-by: Rafal Czubak
    Signed-off-by: Bartlomiej Sieka
    Signed-off-by: Ben Warren

    Bartlomiej Sieka
     

18 Nov, 2007

1 commit


11 Jul, 2007

1 commit


10 Jul, 2007

1 commit


04 Jul, 2007

1 commit

  • This is a compatibility step that allows both the older form
    and the new form to co-exist for a while until the older can
    be removed entirely.

    All transformations are of the form:
    Before:
    #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
    After:
    #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)

    Signed-off-by: Jon Loeliger

    Jon Loeliger
     

16 Apr, 2004

1 commit


24 Mar, 2004

1 commit

  • - show PCI clock frequency on MPC8260 systems
    - add FCC_PSMR_RMII flag for HiP7 processors
    - in do_jffs2_fsload(), take load address from load_addr if not set
    explicit, update load_addr otherwise
    - replaced printf by putc/puts when no formatting is needed
    (smaller code size, faster execution)

    wdenk
     

14 Mar, 2004

2 commits

  • Ocotea:
    - Add IBM PPC440GX Ref Platform support (Ocotea)
    Original code by Paul Reynolds
    Adapted to U-Boot and 440GX port
    440gx_enet.c:
    - Add gracious handling of all Ethernet Pin Selections for 440GX
    - Add RGMII selection for Cicada CIS8201 Gigabit PHY
    ppc440.h:
    - Add needed bit definitions
    - Fix formatting

    * Patch by Carl Riechers, 1 Mar 2004:
    Add PPC440GX prbdv0 divider to fix memory clock calculation.

    * Patch by Stephan Linz, 27 Feb 2004
    - avoid problems for targets without NFS download support

    wdenk
     
  • - Added LBA48 support (CONFIG_LBA48 & CFG_64BIT_LBA)
    - Added support for 64bit printing in vsprintf (CFG_64BIT_VSPRINTF)
    - Added support for 64bit strtoul (CFG_64BIT_STRTOUL)

    * Patch by Masami Komiya, 27 Feb 2004:
    Fix rarpboot: add autoload by NFS

    * Patch by Dan Eisenhut, 26 Feb 2004:
    fix flash_write return value in saveenv

    * Patch by Stephan Linz, 11 Dec 2003
    expand config.mk to avoid trigraph warnings on NIOS

    * Rename "BMS2003" board into "HMI10"

    wdenk
     

01 Jun, 2003

1 commit

  • Fixed rarp boot method for IA32 and other little-endian CPUs.

    * Patch by Marc Singer, 28 May 2003:
    Added port I/O commands.

    * Patch by Matthew McClintock, 28 May 2003
    - cpu/mpc824x/start.S: fix relocation code when booting from RAM
    - minor patches for utx8245

    * Patch by Daniel Engström, 28 May 2003:
    x86 update

    * Patch by Dave Ellis, 9 May 2003 + 27 May 2003:
    add nand flash support to SXNI855T configuration
    fix/extend nand flash support:
    - fix 'nand erase' command so does not erase bad blocks
    - fix 'nand write' command so does not write to bad blocks
    - fix nand_probe() so handles no flash detected properly
    - add doc/README.nand
    - add .jffs2 and .oob options to nand read/write
    - add 'nand bad' command to list bad blocks
    - add 'clean' option to 'nand erase' to write JFFS2 clean markers
    - make NAND read/write faster

    * Patch by Rune Torgersen, 23 May 2003:
    Update for MPC8266ADS board

    wdenk
     

17 Aug, 2002

1 commit