We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6df7e02 commit aafd2f4Copy full SHA for aafd2f4
conf/machine/include/rpi-base.inc
@@ -146,7 +146,7 @@ def make_dtb_boot_files(d):
146
# destination: bcm2708-rpi-b.dtb
147
return base
148
149
- 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)
150
151
RPI_EXTRA_IMAGE_BOOT_FILES ?= " \
152
${@bb.utils.contains('RPI_USE_U_BOOT', '1', \
0 commit comments