We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e145dc4 commit a5346d5Copy full SHA for a5346d5
conf/machine/include/rpi-base.inc
@@ -161,7 +161,7 @@ def make_dtb_boot_files(d):
161
# destination: bcm2708-rpi-b.dtb
162
return base
163
164
- 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)
165
166
RPI_EXTRA_IMAGE_BOOT_FILES ?= " \
167
${@bb.utils.contains('RPI_USE_U_BOOT', '1', \
0 commit comments