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