24 Jul, 2013

1 commit


12 Mar, 2013

1 commit


01 Mar, 2013

1 commit


28 Jul, 2011

1 commit

  • This patch removes the architecture specific implementation of
    version_string where possible. Some architectures use a special place
    and therefore we provide U_BOOT_VERSION_STRING definition and a common
    weak symbol version_string.

    Signed-off-by: Andreas Bießmann
    CC: Mike Frysinger
    CC: Peter Pan
    Acked-by: Mike Frysinger

    Andreas Bießmann
     

13 Sep, 2010

1 commit


09 Aug, 2010

1 commit

  • Applying a little creative format string allows us to shrink the initial
    data read & display loop by only calling printf once. Re-using the local
    data buffer to generate the string we want to display then allows us to
    output everything with just one printf call instead of multiple calls to
    the putc function.

    The local stack buffer needs increasing by 1 byte, but the resulting code
    shrink and speed up is worth it I think.

    Signed-off-by: Mike Frysinger

    Mike Frysinger
     

18 May, 2010

1 commit

  • Modification of print_size to avoid use of divides and especially
    long long divides. Keep the binary scale factor in terms of bit
    shifts instead. This should be faster, since the previous code
    gave the compiler no clues that the divides where always powers
    of two, preventing optimisation.

    Signed-off-by: Nick Thompson
    Acked-by: Timur Tabi

    Nick Thompson
     

06 May, 2010

2 commits


13 Apr, 2010

1 commit

  • Now that the other architecture-specific lib directories have been
    moved out of the top-level directory there's not much reason to have the
    '_generic' suffix on the common lib directory.

    Signed-off-by: Peter Tyser

    Peter Tyser