Lines Matching full:dts
33 # A few architectures have dts files at non standard paths. Massage those into
34 # a standard arch/ARCH/boot/dts first.
36 # symlink: arch/microblaze/boot/dts/system.dts -> ../../platform/generic/system.dts
37 next if m,\tarch/microblaze/boot/dts/system.dts$,;
38 $m++ if s,\tarch/microblaze/platform/generic/(system.dts)$,\tarch/microblaze/boot/dts/$1,;
40 # arch/mips/lantiq/dts/easy50712.dts
41 # arch/mips/lantiq/dts/danube.dtsi
42 # arch/mips/netlogic/dts/xlp_evp.dts
43 # arch/mips/ralink/dts/rt3050.dtsi
44 # arch/mips/ralink/dts/rt3052_eval.dts
45 $m++ if s,\tarch/mips/([^/]*)/dts/(.*\.dts.?)$,\tarch/mips/boot/dts/$2,;
47 # arch/mips/cavium-octeon/octeon_68xx.dts
48 # arch/mips/cavium-octeon/octeon_3xxx.dts
49 # arch/mips/mti-sead3/sead3.dts
50 $m++ if s,\tarch/mips/([^/]*)/([^/]*\.dts.?)$,\tarch/mips/boot/dts/$2,;
52 # arch/x86/platform/ce4100/falconfalls.dts
53 $m++ if s,\tarch/x86/platform/ce4100/falconfalls.dts,\tarch/x86/boot/dts/falconfalls.dts,;
58 # Now rewrite generic DTS paths
59 $m++ if s,\tarch/([^/]*)/boot/dts/(.*\.dts.?)$,\tsrc/$1/$2,;
60 $m++ if s,\tarch/([^/]*)/boot/dts/(.*\.h)$,\tsrc/$1/$2,;
62 # Also rewrite the DTS include paths for dtc+cpp support
63 $m++ if s,\tarch/([^/]*)/include/dts/,\tsrc/$1/include/,;