We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6df7e02 commit 1935464Copy full SHA for 1935464
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(filter(lambda x: x is not None, [transform(dtb) for dtb in alldtbs.split(' ') if dtb]))
150
151
RPI_EXTRA_IMAGE_BOOT_FILES ?= " \
152
${@bb.utils.contains('RPI_USE_U_BOOT', '1', \
0 commit comments