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
     

29 Nov, 2016

2 commits


13 Aug, 2015

1 commit

  • Allow showing custom board info from a checkboard() function being
    implemented if CONFIG_CUSTOM_BOARDINFO is specified. Previously the
    device tree model was always displayed not taking any
    CONFIG_CUSTOM_BOARDINFO into account.

    Signed-off-by: Marcel Ziswiler
    Reviewed-by: Simon Glass

    Marcel Ziswiler
     

05 Aug, 2015

1 commit


28 Jul, 2015

1 commit

  • In case of enable CONFIG_OF_CONTROL and has a "model" property in the root node,
    the board special "checkboard" will not be called.
    Usually we show some useful version information in the function.
    This patch enable call "checkboard" in any case.
    It is not conflicting with showing "model" at the same time.

    For example on LS2085AQDS:
    Showing "model" only:
    Model: Freescale Layerscape 2085a QDS Board

    Showing "checkboard" only:
    Board: LS2085E-QDS, Board Arch: V1, Board version: B, boot from vBank: 4

    Showing both:
    Model: Freescale Layerscape 2085a QDS Board
    Board: LS2085E-QDS, Board Arch: V1, Board version: B, boot from vBank: 4

    Signed-off-by: Haikun Wang
    Reviewed-by: Simon Glass

    Haikun.Wang@freescale.com
     

30 Jan, 2015

1 commit

  • The common/board_r.c has show_model_r() to display the model name
    if the DTB has a "model" property. It sounds useful to have a similar
    function in common/board_f.c too because most of the boards show
    their board name before relocation.

    Instead of implementing the same function in both common/board_f.c
    and common/board_r.c, let's split it up into common/show_board_info.c.

    Signed-off-by: Masahiro Yamada
    Acked-by: Simon Glass

    Masahiro Yamada