summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2023-06-18 10:24:58 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2023-06-18 10:24:58 +0200
commit2918cdc783545229f1dde97aefe7d5f6a306e3a6 (patch)
treeaa76fa9c8d14689e44151ac840a4e35d5012d402 /content
parent2493f55996a17640f81dfacb9fa9f55a63d3e016 (diff)
downloadwww-andreasbaumann-cc-2918cdc783545229f1dde97aefe7d5f6a306e3a6.tar.gz
www-andreasbaumann-cc-2918cdc783545229f1dde97aefe7d5f6a306e3a6.tar.bz2
updated radeon module for Macbook A1221 to 6.3.8
Diffstat (limited to 'content')
-rw-r--r--content/blog/archlinux-macbook-a1211.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/content/blog/archlinux-macbook-a1211.md b/content/blog/archlinux-macbook-a1211.md
index 57ad990..50fe369 100644
--- a/content/blog/archlinux-macbook-a1211.md
+++ b/content/blog/archlinux-macbook-a1211.md
@@ -301,12 +301,16 @@ Also a small walkthrough on how to update the module (in a most likely not too o
```
wget https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.7.6.tar.xz
+tar xf linux-5.7.6.tar.xz
+cd linux-5.7.6
make mrproper
+# use the the configuration of the new kernel!
zcat /proc/config.gz > .config
sed -i 's/.*CONFIG_LOCALVERSION=.*/CONFIG_LOCALVERSION="-arch1-1"/g' .config
sed -i 's/.*CONFIG_LOCALVERSION_AUTO.*/# CONFIG_LOCALVERSION_AUTO is not set/g' .config
make oldconfig
make scripts prepare modules_prepare
+# copy radeon_bios.c to drivers/gpu/drm/radeon
make -C . M=drivers/gpu/drm/radeon
rm -f /lib/modules/5.7.6-arch1-1/kernel/drivers/gpu/drm/radeon/radeon.ko.xz
xz -c drivers/gpu/drm/radeon/radeon.ko \
@@ -324,3 +328,7 @@ https://yoursunny.com/t/2018/one-kernel-module/
Where /mnt/efi is the VFAT rEFIt EFI partition which contains grub and the kernel
image and RAM disk.
+
+## Addendum 18.6.2023
+
+For kernel 6.3.8 updated version [here](/text/blog/archlinux-macbook-a1211/radeon_bios-6.3.8.c) .