rpi-base.inc: handle empty/undefined KERNEL_DEVICETREE

This patch is based on an analog patch from Christopher Boyd <xpboyd@gmail.com> committed at meta-freescale.
(see 954d7a7d7a)

Signed-off-by: Oliver Lang <quantenkeks@gmail.com>
This commit is contained in:
Oliver Lang 2022-10-17 23:22:39 +02:00 committed by Andrei Gherzan
parent fc5f80a47e
commit 722c51647c

View File

@ -119,6 +119,10 @@ def make_dtb_boot_files(d):
# KERNEL_DEVICETREE.
alldtbs = d.getVar('KERNEL_DEVICETREE')
# DTBs may be built out of kernel with devicetree.bbclass
if not alldtbs:
return ''
def transform(dtb):
base = os.path.basename(dtb)
if dtb.endswith('dtbo') or base == 'overlay_map.dtb':