03 Apr, 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
     

04 Sep, 2017

1 commit

  • Commit 4ecc988301bc8e981e6d7538c57cdb3aa82f7c1d assumes fls is in libc
    if __BSD_VISIBLE is defined. This appears to only be true on FreeBSD
    and DragonFlyBSD. OpenBSD defines __BSD_VISIBLE and does not have fls
    in strings.h/libc.

    Switch the test for __BSD_VISIBLE to one for __DragonFly__ and
    __FreeBSD__ to unbreak the build on OpenBSD.

    Signed-off-by: Jonathan Gray

    Jonathan Gray
     

21 Jun, 2017

1 commit

  • endian.h on FreeBSD system exist in sys/ subdirectory.
    FreeBSD already have a fls function defined in strings.h which is included
    in string.h if __BSD_VISIBLE is defined, as a check for this.

    Signed-off-by: Emmanuel Vadot

    Emmanuel Vadot
     

07 Apr, 2017

1 commit

  • We will need the bch functions in the tool to generate the SPL images for
    the Allwinner SoCs.

    Do the needed adjustments so that we can use it on the host.

    Signed-off-by: Maxime Ripard
    Reviewed-by: Tom Rini
    Reviewed-by: Jagan Teki

    Maxime Ripard
     

19 Jan, 2016

1 commit

  • In a number of places we had wordings of the GPL (or LGPL in a few
    cases) license text that were split in such a way that it wasn't caught
    previously. Convert all of these to the correct SPDX-License-Identifier
    tag.

    Signed-off-by: Tom Rini

    Tom Rini
     

27 Jan, 2012

1 commit

  • [backport from linux commit 02f8c6aee8df3cdc935e9bdd4f2d020306035dbe]

    This patch merges the BCH ECC algorithm from the 3.0 Linux kernel.
    This enables U-Boot to support modern NAND flash chips that
    require more than 1-bit of ECC in software.

    Signed-off-by: Christian Hitz
    Cc: Scott Wood
    Signed-off-by: Scott Wood

    Christian Hitz