21 Apr, 2012

2 commits

  • Current versions of dtc always print a message like

    DTC: dts->dtb on file "dt.dtb.tmp"

    which cannot even be suppressed with "-qqq". To avoid incorrect
    MAKEALL status, we manually filter out this message. This is a bit
    complicated, as we have to make sure to set a correct return code.

    Also, get rid of the temp file: dtc accepts "-" for stdin.

    Signed-off-by: Wolfgang Denk
    Cc: Simon Glass
    Acked-by: Simon Glass

    Wolfgang Denk
     
  • Fix: FATAL ERROR: Couldn't open "../arch/arm/dts/tegra20.dtsi": No
    such file or directory

    Signed-off-by: Wolfgang Denk
    Cc: Simon Glass
    Acked-by: Simon Glass

    Wolfgang Denk
     

27 Oct, 2011

1 commit

  • This new option allows U-Boot to embed a binary device tree into its image
    to allow run-time control of peripherals. This device tree is for U-Boot's
    own use and is not necessarily the same one as is passed to the kernel.

    The device tree compiler output should be placed in the $(obj)
    rooted tree. Since $(OBJCOPY) insists on adding the path to the
    generated symbol names, to ensure consistency it should be
    invoked from the directory where the .dtb file is located and
    given the input file name without the path.

    This commit contains my entry for the ugliest Makefile / shell interaction
    competition.

    Signed-off-by: Simon Glass

    Simon Glass