From 619b118e166738d049ecde81ce043486976a4e9c Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Fri, 7 Feb 2025 15:58:47 -0500 Subject: [PATCH] hvk: support DT overlay (dtbo) files --- scripts/hvk-compile.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/hvk-compile.sh b/scripts/hvk-compile.sh index 036b2fe..f16c8dc 100755 --- a/scripts/hvk-compile.sh +++ b/scripts/hvk-compile.sh @@ -126,7 +126,8 @@ function rootfs_install() { DTB_MAIN="${f}.dtb" fi - cp ${DTS_SRC}/${f}.dtb ${deploydir}/${BOOT_DEST}/ + # Copy dtb and dtbo files: + cp ${DTS_SRC}/${f}.dtb* ${deploydir}/${BOOT_DEST}/ done # Create symbolic link to main DTB: -- 2.20.1