I try run below command on Ubuntu 20.04 LTS
sudo update-initramfs -u -k $(uname -r)I get:
update-initramfs: Generating /boot/initrd.img-5.8.0-43-generic
W: Possible missing firmware /lib/firmware/amdgpu/navi10_mes.bin for module amdgpu
I: The initramfs will attempt to resume from /dev/dm-2
I: (/dev/mapper/vgubuntu-swap_1)
I: Set the RESUME variable to override this.So where I can get this file (navi10_mes.bin) ? BTW. CPU is AMD Ryzen 7 4800h and AMD RADEON integretared gpu
11 Answer
You can get most firmware files from the upstream linux-firmware repository:
This person also maintains a GitHub repository of firmware which AMD have made available via ROCm and the proprietary driver, but not uploaded to linux-firmware yet:
However, the file navi_10.mes does not exist in either of these.
We can see this is a genuinely used firmware file with Linux Kernel commit:
I checked driver amdgpu-pro-20.50-1234664-ubuntu-20.04 which contains amdgpu-dkms-firmware_5.9.10.69-1234664_all which doesn't have the file either.
It seems this file is not publicly available at this time?
Leaving this answer as a Community Wiki so someone can update it when the file appears.