07 Feb, 2014

1 commit


20 Aug, 2013

1 commit


24 Jul, 2013

1 commit


25 May, 2013

1 commit


15 May, 2013

1 commit


04 Feb, 2013

4 commits


02 Feb, 2013

1 commit


20 Oct, 2012

13 commits


16 Oct, 2012

1 commit


19 Sep, 2012

1 commit

  • cmd_bdinfo.c: In function ‘do_bdinfo’:
    cmd_bdinfo.c:220:9: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 2 has type ‘int’ [-Wformat]
    cmd_bdinfo.c:222:9: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 2 has type ‘int’ [-Wformat]
    cmd_bdinfo.c:224:9: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 2 has type ‘int’ [-Wformat]
    cmd_bdinfo.c:226:9: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 2 has type ‘int’ [-Wformat]
    cmd_bdinfo.c:228:9: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 2 has type ‘int’ [-Wformat]

    Signed-off-by: Marek Vasut
    Cc: Daniel Hellstrom
    Cc: u-boot-dm@lists.denx.de

    Marek Vasut
     

16 May, 2012

1 commit

  • This field gets read in one place (by "bdinfo"), and we can replace
    that with getenv("ipaddr"). After all, the bi_ip_addr field is kept
    up-to-date implicitly with the value of the ipaddr env var.

    Signed-off-by: Mike Frysinger
    Reviewed-by: Joe Hershberger

    Mike Frysinger
     

25 Apr, 2012

1 commit


12 Feb, 2012

1 commit


14 Jan, 2012

1 commit


07 Dec, 2011

2 commits


29 Nov, 2011

1 commit


22 Oct, 2011

2 commits


18 Oct, 2011

1 commit


04 Jul, 2011

1 commit

  • Replace the cache related CONFIG flags with more meaningful
    names. Following are the changes:

    CONFIG_L2_OFF -> CONFIG_SYS_L2CACHE_OFF
    CONFIG_SYS_NO_ICACHE -> CONFIG_SYS_ICACHE_OFF
    CONFIG_SYS_NO_DCACHE -> CONFIG_SYS_DCACHE_OFF

    Signed-off-by: Aneesh V
    V2:
    * Changed CONFIG_L2_OFF -> CONFIG_SYS_NO_L2CACHE
    V4:
    * Changed all three flags to the final names suggested as above
    and accordingly changed the commit message

    Aneesh V
     

13 May, 2011

1 commit


13 Apr, 2011

1 commit


30 Oct, 2010

1 commit

  • When this define was introduced, the idea was to provide a soft
    migration path for ARM boards to get adapted to the new relocation
    support. However, other recent changes led to a different
    implementation (ELF relocation), where this no longer works. By now
    CONFIG_SYS_ARM_WITHOUT_RELOC does not only not help any more, but it
    actually hurts because it obfuscates the actual code by sprinkling it
    with lots of dead and non-working debris.

    So let's make a clean cut and drop CONFIG_SYS_ARM_WITHOUT_RELOC.

    Signed-off-by: Wolfgang Denk
    Tested-by: Heiko Schocher
    Tested-by: Reinhard Meyer

    Wolfgang Denk
     

27 Oct, 2010

1 commit

  • CONFIG_SYS_GBL_DATA_SIZE has always been just a bad workarond for not
    being able to use "sizeof(struct global_data)" in assembler files.
    Recent experience has shown that manual synchronization is not
    reliable enough. This patch renames CONFIG_SYS_GBL_DATA_SIZE into
    GENERATED_GBL_DATA_SIZE which gets automatically generated by the
    asm-offsets tool. In the result, all definitions of this value can be
    deleted from the board config files. We have to make sure that all
    files that reference such data include the new file.

    No other changes have been done yet, but it is obvious that similar
    changes / simplifications can be done for other, related macro
    definitions as well.

    Signed-off-by: Wolfgang Denk
    Acked-by: Kumar Gala

    Wolfgang Denk