diff options
author | Jaewon Lee <jaewon.lee@xilinx.com> | 2018-12-14 09:54:00 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-03-09 14:43:10 +0000 |
commit | 58dbd3bfb92b39a754f9b69f61f98719af6d3b43 (patch) | |
tree | 52f87480708b4e66b2b7254202633e6735105940 /meta/classes/devicetree.bbclass | |
parent | 2841ac9d1f899a7e947af3791599e7e0a816db09 (diff) | |
download | poky-58dbd3bfb92b39a754f9b69f61f98719af6d3b43.tar.gz |
device-tree.bbclass: Add support to compile overlays separately
Currently only dts files are considered when looping through files to
compile. Modifying the loop to compile other files that are overlays.
Also surrounding this check with a try block as the function to find
overlays parses the file for a '/plugin/' tag, and there may be files in
the DT_FILES_PATH directory that are not parseable.
(From OE-Core rev: bb1629820443bfedc72378a7c88f0656a2f3f7f1)
Signed-off-by: Jaewon Lee <jaewon.lee@xilinx.com>
Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandr@xilinx.com>
Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/devicetree.bbclass')
-rw-r--r-- | meta/classes/devicetree.bbclass | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/classes/devicetree.bbclass b/meta/classes/devicetree.bbclass index e1f377911d..5c03e4b0fd 100644 --- a/meta/classes/devicetree.bbclass +++ b/meta/classes/devicetree.bbclass | |||
@@ -122,9 +122,12 @@ python devicetree_do_compile() { | |||
122 | includes = expand_includes("DT_INCLUDE", d) | 122 | includes = expand_includes("DT_INCLUDE", d) |
123 | listpath = d.getVar("DT_FILES_PATH") | 123 | listpath = d.getVar("DT_FILES_PATH") |
124 | for dts in os.listdir(listpath): | 124 | for dts in os.listdir(listpath): |
125 | if not dts.endswith(".dts"): | ||
126 | continue # skip non-.dts files | ||
127 | dtspath = os.path.join(listpath, dts) | 125 | dtspath = os.path.join(listpath, dts) |
126 | try: | ||
127 | if not(os.path.isfile(dtspath)) or not(dts.endswith(".dts") or devicetree_source_is_overlay(dtspath)): | ||
128 | continue # skip non-.dts files and non-overlay files | ||
129 | except: | ||
130 | continue # skip if can't determine if overlay | ||
128 | devicetree_compile(dtspath, includes, d) | 131 | devicetree_compile(dtspath, includes, d) |
129 | } | 132 | } |
130 | 133 | ||