mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 12:59:03 +02:00
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:
parent
fc5f80a47e
commit
722c51647c
|
@ -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':
|
||||
|
|
Loading…
Reference in New Issue
Block a user