summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-standalone-experimental
diff options
context:
space:
mode:
authorBen Levinsky <ben.levinsky@xilinx.com>2022-04-12 08:27:49 -0700
committerMark Hatle <mhatle@xilinx.com>2022-04-13 13:51:27 -0700
commit171c4114b2f9f039698e2538f2898a2913fc742d (patch)
treead107ab319e3c0abf07fee9ff237f2ea0782c41d /meta-xilinx-standalone-experimental
parentacc5dc830f3216e6140bbad44164589ccea84b1a (diff)
downloadmeta-xilinx-171c4114b2f9f039698e2538f2898a2913fc742d.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>
Diffstat (limited to 'meta-xilinx-standalone-experimental')
-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 )