17

While running sudo apt-get update && sudo apt-get upgrade, I get the following error while upgrade process is processing triggers at the end. How to fix it?

I am on Ubuntu 17.10 default configuration. I already have installed available drivers using "Softwares and Updates".

W: Possible missing firmware /lib/firmware/amdgpu/raven_gpu_info.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/raven_rlc.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/raven_mec2.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/raven_mec.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/raven_me.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/raven_pfp.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/raven_ce.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/raven_sdma.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/raven_vcn.bin for module amdgpu

2 Answers2

31

You can safely ignore those lines.

What you noticed there aren’t "errors". Instead, you’re looking at "warnings" (which you can recognize from the fact that those lines are prepended with a w).

The reason you’re seeing those warnings (and what they don’t tell you) is that all AMD graphics will now load up with llvmpipe and spit out that message (especially in development version).

Anyway, those warnings can be safely ignored.

Nota Bene: What you do not want to do is to fetch the files apt warns about from sources like people.freedesktop.org/~agd5f/radeon_ucode/raven/ as that might introduce a potential attack vector. If you embrace your personal security, don’t simply trust unknown binaries from random sources which can not be verified to be benign.

-4

I'll tell you how to quiet the warnings!

Put the names of the "missing" files with full paths in a temp file. I called my temp file 'myraven'.

Give the command:

sudo touch $( cat myraven )

Done. (You can remove the temp file, of course.)