Device-tree files set via KERNEL_DEVICETREE are deployed without any vendor sub-directory (e.g. arm/juno.dtb gets deployed as juno.dtb).
Same is also done in kernel-fit-image.bbclass. Signed-off-by: Ricardo Salveti <[email protected]> --- meta/classes-recipe/uki.bbclass | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/classes-recipe/uki.bbclass b/meta/classes-recipe/uki.bbclass index fedff222c6c..a2b1c8a82d6 100644 --- a/meta/classes-recipe/uki.bbclass +++ b/meta/classes-recipe/uki.bbclass @@ -152,7 +152,9 @@ python do_uki() { # dtb if d.getVar('KERNEL_DEVICETREE'): for dtb in d.getVar('KERNEL_DEVICETREE').split(): - dtb_path = "%s/%s" % (deploy_dir_image, dtb) + # DTBs are without sub-directories in deploy_dir + dtb_name = os.path.basename(dtb) + dtb_path = "%s/%s" % (deploy_dir_image, dtb_name) if not os.path.exists(dtb_path): bb.fatal(f"ERROR: cannot find {dtb_path}.") ukify_cmd += " --devicetree %s" % (dtb_path) -- 2.34.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#226601): https://lists.openembedded.org/g/openembedded-core/message/226601 Mute This Topic: https://lists.openembedded.org/mt/116385488/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
