Added 40cu role

This commit is contained in:
2026-08-26 09:21:01 +02:00
parent 0ece3a6eff
commit 566381e948
2 changed files with 22 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# The custom `linux-cachyos-bc250` brings in the 40CU patch
- name: Enable the 40 CU unlock
become: true
ansible.builtin.copy:
content: "options amdgpu bc250_cc_write_mode=3\n"
dest: /etc/modprobe.d/bc250-40cu.conf
mode: '0644'
register: cu40_conf
- name: Rebuild initramfs
become: true
ansible.builtin.command: limine-mkinitcpio
when: cu40_conf.changed
changed_when: true
- name: Reboot to reinitialise amdgpu
become: true
ansible.builtin.reboot:
reboot_timeout: 600
when: cu40_conf.changed
+2
View File
@@ -11,3 +11,5 @@
role: gpu_governor
- name: Install Mesa
role: mesa
- name: Enable 40CU
role: 40cu