From 886ab3b4c15fb8f941d72aa8a68f3d45576b28cb Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Thu, 17 Oct 2024 11:19:02 -0400 Subject: [PATCH] hvk: add support to copy additional DTB in DTB_FILES --- scripts/hvk-compile.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/hvk-compile.sh b/scripts/hvk-compile.sh index c6c96f8..11bf19a 100755 --- a/scripts/hvk-compile.sh +++ b/scripts/hvk-compile.sh @@ -112,6 +112,10 @@ function rootfs_install() { cp ${BOOT_SRC}/Image ${deploydir}/boot/Image-latest cp ${DTB_SRC} ${deploydir}${DTB_DEST} + + for f in ${DTB_FILES}; do + cp ${f}.dtb ${deploydir}/boot + done } function rootfs_archive() { -- 2.20.1