Home
last modified time | relevance | path

Searched full:dtc (Results 1 – 25 of 1031) sorted by relevance

12345678910>>...42

/OK3568_Linux_fs/u-boot/scripts/dtc/
H A Dupdate-dtc-source.sh2 # Simple script to update the version of DTC carried by the Linux kernel
4 # This script assumes that the dtc and the linux git trees are in the
5 # same directory. After building dtc in the dtc directory, it copies the
6 # source files and generated source files into the scripts/dtc directory
11 # $ ./scripts/dtc/update-dtc-source.sh
13 # The script will change into the dtc tree, build and test dtc, copy the
15 # message will need to be modified to reflect the version of DTC being
23 # - The dtc "make check" target needs to return a failure
24 # * Extract the version number from the dtc repo for the commit message
25 # * Build dtc in the kernel tree
[all …]
H A D.dtc.cmd
H A D.dtc-lexer.lex.o.cmd
H A D.dtc-parser.tab.o.cmd
H A D.dtc.o.cmd
H A DMakefile1 # scripts/dtc makefile
3 hostprogs-y := dtc
6 dtc-objs := dtc.o flattree.o fstree.o data.o livetree.o treesource.o \
8 dtc-objs += dtc-lexer.lex.o dtc-parser.tab.o
28 $(obj)/dtc-lexer.lex.o: $(obj)/dtc-parser.tab.h
31 clean-files := dtc-lexer.lex.c dtc-parser.tab.c dtc-parser.tab.h
H A Ddtc-parser.tab.c
H A Ddtc-parser.tab.c_shipped65 #line 20 "dtc-parser.y" /* yacc.c:339 */
70 #include "dtc.h"
84 #line 85 "dtc-parser.tab.c" /* yacc.c:339 */
103 by #include "dtc-parser.tab.h". */
149 #line 39 "dtc-parser.y" /* yacc.c:355 */
169 #line 170 "dtc-parser.tab.c" /* yacc.c:355 */
200 #line 201 "dtc-parser.tab.c" /* yacc.c:358 */
1472 #line 110 "dtc-parser.y" /* yacc.c:1646 */
1477 #line 1478 "dtc-parser.tab.c" /* yacc.c:1646 */
1481 #line 118 "dtc-parser.y" /* yacc.c:1646 */
[all …]
H A D.treesource.o.cmd
H A D.flattree.o.cmd
H A D.srcpos.o.cmd
/OK3568_Linux_fs/kernel/scripts/dtc/
H A Dupdate-dtc-source.sh3 # Simple script to update the version of DTC carried by the Linux kernel
5 # This script assumes that the dtc and the linux git trees are in the
6 # same directory. After building dtc in the dtc directory, it copies the
7 # source files and generated source file(s) into the scripts/dtc directory
12 # $ ./scripts/dtc/update-dtc-source.sh
14 # The script will change into the dtc tree, build and test dtc, copy the
16 # message will need to be modified to reflect the version of DTC being
24 # - The dtc "make check" target needs to return a failure
25 # * Extract the version number from the dtc repo for the commit message
26 # * Build dtc in the kernel tree
[all …]
H A DMakefile2 # scripts/dtc makefile
4 hostprogs-always-$(CONFIG_DTC) += dtc
5 hostprogs-always-$(CHECK_DT_BINDING) += dtc
7 dtc-objs := dtc.o flattree.o fstree.o data.o livetree.o treesource.o \
9 dtc-objs += dtc-lexer.lex.o dtc-parser.tab.o
16 $(error dtc needs libyaml for DT schema validation support. \
21 dtc-objs += yamltree.o
33 $(obj)/dtc-lexer.lex.o: $(obj)/dtc-parser.tab.h
H A Ddtx_diff37 Each DTx is processed by the dtc compiler to produce a sorted dts source
94 if ( ! ${DTC} -I fs ${dtx} ) ; then
105 if ( ! ${DTC} -I dtb ${dtx} ) ; then
116 | ${DTC} ${dtc_include} -I dts ) ; then
272 # ----- prefer dtc from linux kernel, allow fallback to dtc in $PATH
282 DTC="${__KBUILD_OUTPUT}/scripts/dtc/dtc"
284 if [ ! -x ${DTC} ] ; then
285 __DTC="dtc"
299 ERROR: unable to find a 'dtc' program
301 Preferred 'dtc' (built from Linux kernel source tree) was not found or
[all …]
/OK3568_Linux_fs/u-boot/lib/libfdt/
H A Dfdt_rw.su
H A Dfdt_sw.su
H A Dfdt.su
/OK3568_Linux_fs/u-boot/spl/lib/libfdt/
H A Dfdt_rw.su
H A Dfdt_sw.su
H A Dfdt.su
/OK3568_Linux_fs/buildroot/board/olimex/a64-olinuxino/patches/linux/
H A D0001-scripts-dtc-Remove-redundant-YYLOC-global-declaratio.patch4 Subject: [PATCH] scripts/dtc: Remove redundant YYLOC global declaration
9 …(.text+0x0): multiple definition of `yylloc'; dtc-lexer.lex.o (symbol from plugin):(.text+0x0): fi…
11 This is because both dtc-lexer as well as dtc-parser define the same
16 dtc-lexer.l:26:16: error: redundant redeclaration of 'yylloc' [-Werror=redundant-decls]
19 In file included from dtc-lexer.l:24:
20 dtc-parser.tab.h:127:16: note: previous declaration of 'yylloc' was here
35 scripts/dtc/dtc-lexer.l | 1 -
38 diff --git a/scripts/dtc/dtc-lexer.l b/scripts/dtc/dtc-lexer.l
40 --- a/scripts/dtc/dtc-lexer.l
41 +++ b/scripts/dtc/dtc-lexer.l
[all …]
/OK3568_Linux_fs/u-boot/scripts/
H A Ddtc-version.sh3 # dtc-version dtc-command
5 # Prints the dtc version of `dtc-command' in a canonical 6-digit form
6 # such as `010404' for dtc 1.4.4
9 dtc="$*"
11 if [ ${#dtc} -eq 0 ]; then
12 echo "Error: No dtc command specified."
13 printf "Usage:\n\t$0 <dtc-command>\n"
17 MAJOR=$($dtc -v | head -1 | awk '{print $NF}' | cut -d . -f 1)
18 MINOR=$($dtc -v | head -1 | awk '{print $NF}' | cut -d . -f 2)
19 PATCH=$($dtc -v | head -1 | awk '{print $NF}' | cut -d . -f 3 | cut -d - -f 1)
/OK3568_Linux_fs/buildroot/board/beagleboneai/patches/uboot/
H A D0002-Remove-redundant-YYLOC-global-declaration.patch6 Same as the upstream fix for building dtc with gcc 10.
11 scripts/dtc/dtc-lexer.l | 1 -
14 diff --git a/scripts/dtc/dtc-lexer.l b/scripts/dtc/dtc-lexer.l
16 --- a/scripts/dtc/dtc-lexer.l
17 +++ b/scripts/dtc/dtc-lexer.l
20 #include "dtc-parser.tab.h"
/OK3568_Linux_fs/buildroot/board/olimex/a64-olinuxino/patches/uboot/
H A D0001-Remove-redundant-YYLOC-global-declaration.patch6 Same as the upstream fix for building dtc with gcc 10.
11 scripts/dtc/dtc-lexer.l | 1 -
14 diff --git a/scripts/dtc/dtc-lexer.l b/scripts/dtc/dtc-lexer.l
16 --- a/scripts/dtc/dtc-lexer.l
17 +++ b/scripts/dtc/dtc-lexer.l
20 #include "dtc-parser.tab.h"
/OK3568_Linux_fs/buildroot/board/sheevaplug/patches/uboot/
H A D0001-Remove-redundant-YYLOC-global-declaration.patch6 Same as the upstream fix for building dtc with gcc 10.
11 scripts/dtc/dtc-lexer.l | 1 -
14 diff --git a/scripts/dtc/dtc-lexer.l b/scripts/dtc/dtc-lexer.l
16 --- a/scripts/dtc/dtc-lexer.l
17 +++ b/scripts/dtc/dtc-lexer.l
20 #include "dtc-parser.tab.h"

12345678910>>...42