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
     

24 Jul, 2013

1 commit


29 Mar, 2012

1 commit

  • The fdtdec_find_aliases_for_id() function is complicated enough that
    it really should have some tests. This does not necessarily need to be
    committed to U-Boot, but it might be useful.

    (note there are a few minor inconsistencies with this patch which will be
    cleaned up when the USB series is applied)

    Signed-off-by: Simon Glass
    Signed-off-by: Tom Warren

    Simon Glass