05 Mar, 2018

1 commit

  • Thomas reported U-Boot failed to build host tools if libfdt-devel
    package is installed because tools include libfdt headers from
    /usr/include/ instead of using internal ones.

    This commit moves the header code:
    include/libfdt.h -> include/linux/libfdt.h
    include/libfdt_env.h -> include/linux/libfdt_env.h

    and replaces include directives:
    #include -> #include
    #include -> #include

    Reported-by: Thomas Petazzoni
    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     

06 Oct, 2017

1 commit


11 Jul, 2017

1 commit

  • Some of the functions within spl_fit will be used for non spl purposes.
    Instead of duplicating functions simply break the functions to be reused
    into its own file.

    Signed-off-by: Franklin S Cooper Jr
    Reviewed-by: Tom Rini
    Reviewed-by: Simon Glass
    [trini: Only add the new define to image.h, otherwise we see breakage
    due to massive include leakage into host tools in some cases]
    Signed-off-by: Tom Rini

    Cooper Jr., Franklin