From: Hugo Villeneuve Date: Thu, 17 Oct 2024 15:19:02 +0000 (-0400) Subject: hvk: add support to copy additional DTB in DTB_FILES X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=886ab3b4c15fb8f941d72aa8a68f3d45576b28cb;p=hvutilities.git hvk: add support to copy additional DTB in DTB_FILES --- 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() {