diff options
author | Mikko Rapeli <mikko.rapeli@linaro.org> | 2025-10-10 16:52:34 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-10-10 17:42:09 +0100 |
commit | a60e9fe98674ef4221bedbc0db650d428164020c (patch) | |
tree | c50d95bb88156c05919741529d0905dd3d9418bd | |
parent | 9440632d0776e61e42408719b471021e3ffb8f92 (diff) | |
download | poky-a60e9fe98674ef4221bedbc0db650d428164020c.tar.gz |
genericarm64.conf: install linux-firmware-bcm43455 to images
by default. Fixes parselogs oeqa runtime test failures:
https://ledge.validation.linaro.org/scheduler/job/121516
Central error: brcmfmac mmc1:0001:1: Direct firmware load for brcm/brcmfmac43455-sdio.raspberrypi,4-model-b.bin failed with error -2
...
Central error: brcmfmac mmc1:0001:1: Direct firmware load for brcm/brcmfmac43455-sdio.bin failed with error -2
(From meta-yocto rev: 2e0fc30472d06834591b1c2b5a54f31dfa883942)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta-yocto-bsp/conf/machine/genericarm64.conf | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta-yocto-bsp/conf/machine/genericarm64.conf b/meta-yocto-bsp/conf/machine/genericarm64.conf index 0c78960199..7738e71c4f 100644 --- a/meta-yocto-bsp/conf/machine/genericarm64.conf +++ b/meta-yocto-bsp/conf/machine/genericarm64.conf | |||
@@ -16,7 +16,12 @@ PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" | |||
16 | # Install all the kernel modules into the rootfs | 16 | # Install all the kernel modules into the rootfs |
17 | MACHINE_EXTRA_RRECOMMENDS += "kernel-modules" | 17 | MACHINE_EXTRA_RRECOMMENDS += "kernel-modules" |
18 | # Install selected pieces of firmware | 18 | # Install selected pieces of firmware |
19 | MACHINE_EXTRA_RRECOMMENDS += "linux-firmware-wl12xx linux-firmware-wl18xx linux-firmware-rtl-nic" | 19 | MACHINE_EXTRA_RRECOMMENDS += "\ |
20 | linux-firmware-bcm43455 \ | ||
21 | linux-firmware-wl12xx \ | ||
22 | linux-firmware-wl18xx \ | ||
23 | linux-firmware-rtl-nic \ | ||
24 | " | ||
20 | # increase default size since we install a lot of kernel drivers and firmware by default | 25 | # increase default size since we install a lot of kernel drivers and firmware by default |
21 | INITRAMFS_MAXSIZE = "200000" | 26 | INITRAMFS_MAXSIZE = "200000" |
22 | 27 | ||