Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conf/machine/include/rpi-base.inc
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def make_dtb_boot_files(d):
# destination: bcm2708-rpi-b.dtb
return base

return ' '.join([transform(dtb) for dtb in alldtbs.split(' ') if dtb])
return ' '.join(x for x in (transform(dtb) for dtb in alldtbs.split(' ') if dtb) if x is not None)

RPI_EXTRA_IMAGE_BOOT_FILES ?= " \
${@bb.utils.contains('RPI_USE_U_BOOT', '1', \
Expand Down
Loading