mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 12:08:19 +00:00 
			
		
		
		
	To achieve a DTC state (more or less) equivalent to Linux 4.17-rc4,
backport the DTC-specific part from below Linux commits:
b23d1a241f4eb4 ("kbuild: add %.lex.c and %.tab.[ch] to 'targets' automatically")
9a8dfb394c0467 ("kbuild: clean up *.lex.c and *.tab.[ch] patterns from top-level Makefile")
59889300274569 (".gitignore: move *.lex.c *.tab.[ch] patterns to the top-level .gitignore")
e039139be8c251 ("scripts/dtc: generate lexer and parser during build instead of shipping")
b24413180f5600 ("License cleanup: add SPDX GPL-2.0 license identifier to files with no license")
With this commit, the diff between Linux and U-boot common DTC files is:
$ git diff --stat --diff-filter=M v4.17-rc4 <this-commit> -- scripts/dtc
  scripts/dtc/.gitignore | 2 +-
  scripts/dtc/Makefile   | 3 +++
The delta is coming from U-boot commits:
* v2017.11 de163ecedb8a ("scripts: dtc: Add .gitignore")
* v2018.01 15b97f5c5e6d ("pylibfdt: move pylibfdt to scripts/dtc/pylibfdt and refactor makefile")
Signed-off-by: Eugeniu Rosca <erosca@de.adit-jv.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Masahiro Yamada <yamada.masahiro@socionext.com>
		
	
			
		
			
				
	
	
		
			33 lines
		
	
	
		
			1014 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1014 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-2.0
 | |
| # scripts/dtc makefile
 | |
| 
 | |
| hostprogs-y	:= dtc
 | |
| always		:= $(hostprogs-y)
 | |
| 
 | |
| dtc-objs	:= dtc.o flattree.o fstree.o data.o livetree.o treesource.o \
 | |
| 		   srcpos.o checks.o util.o
 | |
| dtc-objs	+= dtc-lexer.lex.o dtc-parser.tab.o
 | |
| 
 | |
| # Source files need to get at the userspace version of libfdt_env.h to compile
 | |
| 
 | |
| HOSTCFLAGS_DTC := -I$(src) -I$(src)/libfdt
 | |
| 
 | |
| HOSTCFLAGS_checks.o := $(HOSTCFLAGS_DTC)
 | |
| HOSTCFLAGS_data.o := $(HOSTCFLAGS_DTC)
 | |
| HOSTCFLAGS_dtc.o := $(HOSTCFLAGS_DTC)
 | |
| HOSTCFLAGS_flattree.o := $(HOSTCFLAGS_DTC)
 | |
| HOSTCFLAGS_fstree.o := $(HOSTCFLAGS_DTC)
 | |
| HOSTCFLAGS_livetree.o := $(HOSTCFLAGS_DTC)
 | |
| HOSTCFLAGS_srcpos.o := $(HOSTCFLAGS_DTC)
 | |
| HOSTCFLAGS_treesource.o := $(HOSTCFLAGS_DTC)
 | |
| HOSTCFLAGS_util.o := $(HOSTCFLAGS_DTC)
 | |
| 
 | |
| HOSTCFLAGS_dtc-lexer.lex.o := $(HOSTCFLAGS_DTC)
 | |
| HOSTCFLAGS_dtc-parser.tab.o := $(HOSTCFLAGS_DTC)
 | |
| 
 | |
| # dependencies on generated files need to be listed explicitly
 | |
| $(obj)/dtc-lexer.lex.o: $(obj)/dtc-parser.tab.h
 | |
| 
 | |
| # Added for U-Boot
 | |
| subdir-$(CONFIG_PYLIBFDT) += pylibfdt
 |