Uploaded sanitized BC250/ROCm Repository.

This commit is contained in:
Fabian
2026-08-20 00:45:43 +02:00
parent 7d2184f1e8
commit d7d22e93b3
678 changed files with 65963 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/bin/bash
set -euo pipefail
KVER=$(uname -r)
MODPATH="/lib/modules/$KVER/kernel/drivers/gpu/drm/amd/amdgpu"
echo "Kernel: $KVER"
echo "Module path: $MODPATH"
echo "--- Install validation-patched module (2500 MHz range check) ---"
sudo cp /tmp/amdgpu_repatched.ko.zst "$MODPATH/amdgpu.ko.zst"
ls -lh "$MODPATH/amdgpu.ko.zst"
echo "--- Running depmod ---"
sudo depmod -a
echo "--- Rebuilding initramfs via limine-update ---"
sudo limine-update
echo "DONE. Reboot required."