summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes-recipe/uboot-sign.bbclass4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes-recipe/uboot-sign.bbclass b/meta/classes-recipe/uboot-sign.bbclass
index abde0bc61c..4b462698f9 100644
--- a/meta/classes-recipe/uboot-sign.bbclass
+++ b/meta/classes-recipe/uboot-sign.bbclass
@@ -318,7 +318,9 @@ EOF
318 ${SPL_MKIMAGE_SIGN_ARGS} 318 ${SPL_MKIMAGE_SIGN_ARGS}
319 fi 319 fi
320 320
321 cp ${SPL_DIR}/${SPL_DTB_BINARY} ${SPL_DIR}/${SPL_DTB_SIGNED} 321 if [ -e "${SPL_DIR}/${SPL_DTB_BINARY}" ]; then
322 cp ${SPL_DIR}/${SPL_DTB_BINARY} ${SPL_DIR}/${SPL_DTB_SIGNED}
323 fi
322} 324}
323 325
324uboot_assemble_fitimage_helper() { 326uboot_assemble_fitimage_helper() {