projects
/
hvutilities.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8034daf
)
hvk: add support to copy additional DTB in DTB_FILES
author
Hugo Villeneuve
<hugo@hugovil.com>
Thu, 17 Oct 2024 15:19:02 +0000
(11:19 -0400)
committer
Hugo Villeneuve
<hugo@hugovil.com>
Thu, 24 Oct 2024 20:53:45 +0000
(16:53 -0400)
scripts/hvk-compile.sh
patch
|
blob
|
history
diff --git
a/scripts/hvk-compile.sh
b/scripts/hvk-compile.sh
index
c6c96f8
..
11bf19a
100755
(executable)
--- 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() {