-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 144535 b: refs/heads/master c: 9fffb55 h: refs/heads/master i: 144533: 11b6599 144531: 49ac9d3 144527: 3f8f138 v: v3
- Loading branch information
David Gibson
authored and
Linus Torvalds
committed
May 2, 2009
1 parent
c3a33f0
commit 9973abe
Showing
34 changed files
with
84 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: afc1e702e8e8355faa712d4e90d9afe26a4995a5 | ||
refs/heads/master: 9fffb55f66127b52c937ede5196ebfa0c0d50bce |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# 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 | ||
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_dtc-lexer.lex.o := $(HOSTCFLAGS_DTC) | ||
HOSTCFLAGS_dtc-parser.tab.o := $(HOSTCFLAGS_DTC) | ||
|
||
# dependencies on generated files need to be listed explicitly | ||
$(obj)/dtc-parser.tab.o: $(obj)/dtc-parser.tab.c $(obj)/dtc-parser.tab.h | ||
$(obj)/dtc-lexer.lex.o: $(obj)/dtc-lexer.lex.c $(obj)/dtc-parser.tab.h | ||
|
||
targets += dtc-parser.tab.c dtc-lexer.lex.c | ||
|
||
clean-files += dtc-parser.tab.h | ||
|
||
# GENERATE_PARSER := 1 # Uncomment to rebuild flex/bison output | ||
|
||
ifdef GENERATE_PARSER | ||
|
||
BISON = bison | ||
FLEX = flex | ||
|
||
quiet_cmd_bison = BISON $@ | ||
cmd_bison = $(BISON) -o$@ -d $<; cp $@ $@_shipped | ||
quiet_cmd_flex = FLEX $@ | ||
cmd_flex = $(FLEX) -o$@ $<; cp $@ $@_shipped | ||
|
||
$(obj)/dtc-parser.tab.c: $(src)/dtc-parser.y FORCE | ||
$(call if_changed,bison) | ||
|
||
$(obj)/dtc-parser.tab.h: $(obj)/dtc-parser.tab.c | ||
|
||
$(obj)/dtc-lexer.lex.c: $(src)/dtc-lexer.l FORCE | ||
$(call if_changed,flex) | ||
|
||
endif |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.