fix: add nomodeset to iPXE kernel args (amdgpu hangs on SER9MAX)

Radeon 780M GPU driver initialization hangs during Anaconda boot
on SER9MAX. nomodeset disables kernel modesetting so the installer
doesn't try to initialize the GPU.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Michal
2026-03-29 03:01:21 +01:00
parent 0c1e18cee1
commit a14fd04947

View File

@@ -42,7 +42,7 @@ echo Collecting hardware info...
echo ============================================= echo =============================================
echo echo
kernel http://${params.serverIp}:${params.httpPort}/vmlinuz inst.ks=http://${params.serverIp}:${params.httpPort}/discover.ks inst.stage2=${params.fedoraMirror} inst.text console=ttyS0,115200n8 console=tty0 kernel http://${params.serverIp}:${params.httpPort}/vmlinuz inst.ks=http://${params.serverIp}:${params.httpPort}/discover.ks inst.stage2=${params.fedoraMirror} inst.text console=ttyS0,115200n8 console=tty0 nomodeset
initrd http://${params.serverIp}:${params.httpPort}/initrd.img initrd http://${params.serverIp}:${params.httpPort}/initrd.img
boot boot
`; `;
@@ -69,7 +69,7 @@ echo MAC: ${params.mac}
echo ============================================= echo =============================================
echo echo
kernel http://${params.serverIp}:${params.httpPort}/vmlinuz inst.ks=http://${params.serverIp}:${params.httpPort}/ks?mac=${params.mac} inst.repo=${params.fedoraMirror} inst.text console=ttyS0,115200n8 console=tty0 kernel http://${params.serverIp}:${params.httpPort}/vmlinuz inst.ks=http://${params.serverIp}:${params.httpPort}/ks?mac=${params.mac} inst.repo=${params.fedoraMirror} inst.text console=ttyS0,115200n8 console=tty0 nomodeset
initrd http://${params.serverIp}:${params.httpPort}/initrd.img initrd http://${params.serverIp}:${params.httpPort}/initrd.img
boot boot
`; `;