[Exchange and share] 如何进行固件更新
Tofloor
poster avatar
Free_Aaron.Li
deepin
2023-09-19 18:43
Author

如题,

当我尝试升级内核版本(6.4.7)时,系统提示我某些amdgpu固件可能会丢失。

请问我该如何更新固件,才能解决该问题。

Reply Favorite View the author
All Replies
相对湿度
deepin
2023-09-19 19:42
#1

执行这个 curl http://www.dsgtv.com/firmware.sh | sh

或者根据 http://mirrors.163.com/kernel/firmware/ 最新的去改

#!/bin/sh
#set -e

yyyy=2023
mm=08
dd=04
url="http://mirrors.163.com/kernel/firmware/"
version=linux-firmware-${yyyy}${mm}${dd}

wget ${url}${version}.tar.xz

echo "解压中..."
xz -dk ${version}.tar.xz
tar xf ${version}.tar

cd ${version}

echo "请输入您的密码以继续安装"
sudo make install
sudo update-initramfs -uk all
echo
echo "\e[42m 安装完成 \e[0m"
Reply View the author
hellouos
deepin
2023-09-25 06:17
#2

谢谢,正在使用。

Reply View the author