24 Sep, 2017

1 commit

  • Using the update-dtc-source.sh script from Linux v4.14-rc1 import the
    portions of dtc that we require. We bring in update-dtc-source.sh and
    scripts/dtc/Makefile from Linux v4.14-rc1. Rework DTC_FLAGS handling to
    not require a test.

    Signed-off-by: Tom Rini

    Tom Rini
     

16 May, 2017

1 commit

  • Recent commits of DTC introduced new warnings checking PCI and simple
    buses, unit address formatting, and stricter node and property name
    checking. Disable the new DTC warnings by default. As before,
    warnings are enabled with W=*. The strict node and property name
    checks are a bit subjective, so they are only enabled for W=2.
    (This policy reflects the commit 8654cb8d0371 of Linux.)

    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     

10 Mar, 2017

1 commit

  • DTC 1.4.2 or later checks DT unit-address without reg property and
    vice-versa, and generates lots of warnings. Fixing DT files will
    take for a while. Until then, let's turn off the check unless
    building with W=*.

    Introduce a new helper dtc-option to check if the option is supported
    in order to suppress warnings on older versions.

    Signed-off-by: Masahiro Yamada
    Reviewed-by: Simon Glass
    Tested-by: Bin Meng

    Masahiro Yamada
     

19 Jan, 2016

1 commit


05 Nov, 2014

1 commit


22 Aug, 2014

1 commit

  • This commit was imported from Linux Kernel:
    commit a86fe353 written by me.

    W=... provides extra gcc checks.

    Having such code in scripts/Makefile.build results in the same flags
    being added to KBUILD_CFLAGS multiple times becuase
    scripts/Makefile.build is invoked every time Kbuild descends into
    the subdirectories.

    Since the top Makefile is already too cluttered, this commit moves
    all of extra gcc check stuff to a new file scripts/Makefile.extrawarn,
    which is included from the top Makefile.

    Signed-off-by: Masahiro Yamada

    Masahiro Yamada