From 734ad62d58b244379ab7ef2fa47a20231a821037 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 12 Apr 2022 16:52:34 +0200 Subject: [PATCH 1/2] linux-firmware: Update version from 20220209 to 20220411 While touching the package, also update it to the latest version. --- linux-firmware.be0 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/linux-firmware.be0 b/linux-firmware.be0 index 52601b97e..3f69353c5 100755 --- a/linux-firmware.be0 +++ b/linux-firmware.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION linux-firmware-20220209-0 +# BEE_VERSION linux-firmware-20220411-0 # ***** created by ***** # @@ -15,8 +15,8 @@ ## The source URL(s) define the location of the sources that will be ## downloaded. Version variables may be used to simplify reuse of this bee-file. -#SRCURL[0]="https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/snapshot/linux-firmware-20220209.tar.gz" -SRCURL[0]="https://beehive.molgen.mpg.de/c119b2ffbca4d4f53e01f3f67c61c5c4/linux-firmware-20220209.tar.gz" +#SRCURL[0]="https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/snapshot/linux-firmware-20220411.tar.gz" +SRCURL[0]="https://beehive.molgen.mpg.de/abb234004d73d8d6146f490b20e4adac/linux-firmware-20220411.tar.gz" ############################################################################### ## Add URLs/pathes to patch files to the PATCHURL array. From a43b2612c955176bba41db9922940a36101e8bdc Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 12 Apr 2022 16:54:49 +0200 Subject: [PATCH 2/2] linux-firmware: Install NVIDIA firmware files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On a Dell OptiPlex 7071 with 01:00.0 VGA compatible controller [0300]: NVIDIA Corporation TU104 [GeForce RTX 2080] [10de:1e82] (rev a1) Linux 5.17.2 with nouveau logs nouveau 0000:01:00.0: gr: firmware unavailable nouveau 0000:01:00.0: sec2: firmware unavailable […] nouveau 0000:01:00.0: DRM: failed to create kernel channel, -22 and repeatedly reports: nouveau 0000:01:00.0: disp: head 00000040 So, install the NVIDIA firmware files, as [suggested by the developers](https://gitlab.freedesktop.org/drm/nouveau/-/issues/168). Adding all firmware files uses 4.2 MB. @sigusr2:~$ du -sh /lib/firmware/nvidia/ 4.2M /lib/firmware/nvidia/ --- linux-firmware.be0 | 1 + 1 file changed, 1 insertion(+) diff --git a/linux-firmware.be0 b/linux-firmware.be0 index 3f69353c5..7f7e6c820 100755 --- a/linux-firmware.be0 +++ b/linux-firmware.be0 @@ -75,6 +75,7 @@ mee_install() { cp -ax ${S}/bnx2 $D/lib/firmware cp -ax ${S}/bnx2x $D/lib/firmware cp -ax ${S}/i915 $D/lib/firmware + cp -ax ${S}/nvidia $D/lib/firmware cp -ax ${S}/radeon $D/lib/firmware cp -ax ${S}/rtl_nic $D/lib/firmware }