diff mbox series

[U-Boot,v2,1/4] scripts/dtc: add fdt_overlay.c and fdt_addresses.c to sync script

Message ID 1508215364-14631-2-git-send-email-yamada.masahiro@socionext.com
State Accepted
Commit 0d8216182388a5e485aa84b3175ea87d8f9b57c5
Delegated to: Tom Rini
Headers show
Series pylibfdt: compile pylibfdt in scripts/dtc/pylibfdt only when necessary | expand

Commit Message

Masahiro Yamada Oct. 17, 2017, 4:42 a.m. UTC
From: Rob Herring <robh@kernel.org>

libfdt has gained some new files. We need to include them in the
kernel's copy.

Reported-by: Kyle Yan <kyan@codeaurora.org>
Signed-off-by: Rob Herring <robh@kernel.org>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>

[ Linux commit: 4322323058f010274564006d61945187a15b6361 ]

---

 scripts/dtc/update-dtc-source.sh | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Comments

Tom Rini Nov. 17, 2017, 3:43 p.m. UTC | #1
On Tue, Oct 17, 2017 at 01:42:41PM +0900, Masahiro Yamada wrote:

> From: Rob Herring <robh@kernel.org>
> 
> libfdt has gained some new files. We need to include them in the
> kernel's copy.
> 
> Reported-by: Kyle Yan <kyan@codeaurora.org>
> Signed-off-by: Rob Herring <robh@kernel.org>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> 
> [ Linux commit: 4322323058f010274564006d61945187a15b6361 ]

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/scripts/dtc/update-dtc-source.sh b/scripts/dtc/update-dtc-source.sh
index b8ebcc6..f3e5c59 100755
--- a/scripts/dtc/update-dtc-source.sh
+++ b/scripts/dtc/update-dtc-source.sh
@@ -34,7 +34,9 @@  DTC_SOURCE="checks.c data.c dtc.c dtc.h flattree.c fstree.c livetree.c srcpos.c
 		srcpos.h treesource.c util.c util.h version_gen.h Makefile.dtc \
 		dtc-lexer.l dtc-parser.y"
 DTC_GENERATED="dtc-lexer.lex.c dtc-parser.tab.c dtc-parser.tab.h"
-LIBFDT_SOURCE="Makefile.libfdt fdt.c fdt.h fdt_empty_tree.c fdt_ro.c fdt_rw.c fdt_strerror.c fdt_sw.c fdt_wip.c libfdt.h libfdt_env.h libfdt_internal.h"
+LIBFDT_SOURCE="Makefile.libfdt fdt.c fdt.h fdt_addresses.c fdt_empty_tree.c \
+		fdt_overlay.c fdt_ro.c fdt_rw.c fdt_strerror.c fdt_sw.c \
+		fdt_wip.c libfdt.h libfdt_env.h libfdt_internal.h"
 
 get_last_dtc_version() {
 	git log --oneline scripts/dtc/ | grep 'upstream' | head -1 | sed -e 's/^.* \(.*\)/\1/'