summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-standalone-experimental/recipes-core
diff options
context:
space:
mode:
authorBen Levinsky <ben.levinsky@xilinx.com>2022-04-12 08:27:49 -0700
committerMark Hatle <mhatle@xilinx.com>2022-05-24 10:49:20 -0700
commit5551ecd764c93afcb917d40869c5345e09586a25 (patch)
treed1bde38550135ec4133779b0ca75e215754d2159 /meta-xilinx-standalone-experimental/recipes-core
parent978126629516b0beae83ee4f0a6d426ea859eb52 (diff)
downloadmeta-xilinx-5551ecd764c93afcb917d40869c5345e09586a25.tar.gz
dt-processor: Use pruning lop file for Versal A72 Linux loper runs
Signed-off-by: Ben Levinsky <ben.levinsky@xilinx.com> Signed-off-by: Mark Hatle <mhatle@xilinx.com> (cherry picked from commit 171c4114b2f9f039698e2538f2898a2913fc742d) Signed-off-by: Mark Hatle <mhatle@xilinx.com>
Diffstat (limited to 'meta-xilinx-standalone-experimental/recipes-core')
-rwxr-xr-xmeta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh b/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh
index 441dc7d2..2dc48b75 100755
--- a/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh
+++ b/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh
@@ -325,11 +325,15 @@ cortex_a72_linux() {
325 elif [ -n "${domain_file}" ]; then 325 elif [ -n "${domain_file}" ]; then
326 LOPPER_DTC_FLAGS="-b 0 -@" ${lopper} -f --permissive --enhanced -x '*.yaml' \ 326 LOPPER_DTC_FLAGS="-b 0 -@" ${lopper} -f --permissive --enhanced -x '*.yaml' \
327 -i "${domain_file}" -i "${lops_dir}/lop-a72-imux.dts" \ 327 -i "${domain_file}" -i "${lops_dir}/lop-a72-imux.dts" \
328 -i "${lops_dir}/lop-domain-a72.dts" "${system_dtb}" "${dtb_file}" \ 328 -i "${lops_dir}/lop-domain-a72.dts" \
329 -i "${lops_dir}/lop-domain-a72-prune.dts" \
330 "${system_dtb}" "${dtb_file}" \
329 || error "lopper failed" 331 || error "lopper failed"
330 else 332 else
331 LOPPER_DTC_FLAGS="-b 0 -@" ${lopper} -f --enhanced -i "${lops_dir}/lop-a72-imux.dts" \ 333 LOPPER_DTC_FLAGS="-b 0 -@" ${lopper} -f --enhanced -i "${lops_dir}/lop-a72-imux.dts" \
332 -i "${lops_dir}/lop-domain-a72.dts" "${system_dtb}" "${dtb_file}" || error "lopper failed" 334 -i "${lops_dir}/lop-domain-a72.dts" \
335 -i "${lops_dir}/lop-domain-a72-prune.dts" \
336 "${system_dtb}" "${dtb_file}" || error "lopper failed"
333 fi 337 fi
334 rm -f pl.dtsi lop-a72-imux.dts.dtb lop-domain-a72.dts.dtb 338 rm -f pl.dtsi lop-a72-imux.dts.dtb lop-domain-a72.dts.dtb
335 ) 339 )