12 Oct, 2019

1 commit


12 Aug, 2019

1 commit


07 May, 2018

1 commit

  • When U-Boot started using SPDX tags we were among the early adopters and
    there weren't a lot of other examples to borrow from. So we picked the
    area of the file that usually had a full license text and replaced it
    with an appropriate SPDX-License-Identifier: entry. Since then, the
    Linux Kernel has adopted SPDX tags and they place it as the very first
    line in a file (except where shebangs are used, then it's second line)
    and with slightly different comment styles than us.

    In part due to community overlap, in part due to better tag visibility
    and in part for other minor reasons, switch over to that style.

    This commit changes all instances where we have a single declared
    license in the tag as both the before and after are identical in tag
    contents. There's also a few places where I found we did not have a tag
    and have introduced one.

    Signed-off-by: Tom Rini

    Tom Rini
     

16 Aug, 2017

1 commit

  • We are now using an env_ prefix for environment functions. Rename these
    two functions for consistency. Also add function comments in common.h.

    Quite a few places use getenv() in a condition context, provoking a
    warning from checkpatch. These are fixed up in this patch also.

    Suggested-by: Wolfgang Denk
    Signed-off-by: Simon Glass

    Simon Glass
     

18 Mar, 2017

1 commit


27 May, 2016

1 commit


10 Feb, 2016

1 commit

  • On some systems, RAM starts at address 0. If the user executes itest
    against address 0 on such a system, it will call map_physmem(0, ...)
    which will return 0 back; mapping only changes the address on sandbox.
    This causes itest to believe map_physmem() has failed, and hence fails
    the comparison.

    Fix itest so that it allows map_physmem() to return 0 /if/ the orignal
    address passed to it was also 0.

    This fixes "tegra-uboot-flasher flash" on Tegra20.

    This has the disadvantage that on sandbox, failed mapping attempts for
    address 0 are not detected. Instead, should the code only call
    map_physmem() on sandbox? Or, should map_physmem() return its error status
    some other way. Or, should the special case only be allowed on systems
    where the base of RAM is 0 somehow?

    Fixes: 7861204c9af7 ("itest: make memory access work under sandbox")
    Signed-off-by: Stephen Warren

    Stephen Warren
     

25 Jan, 2016

1 commit

  • Now that they are in their own directory, we can remove this prefix.
    This makes it easier to find a file since the prefix does not get in the
    way.

    Signed-off-by: Simon Glass
    Reviewed-by: Bin Meng
    Reviewed-by: Heiko Schocher
    Acked-by: Stefan Roese
    Acked-by: Przemyslaw Marczak

    Simon Glass