You are not logged in.
I wan't to use pcie passthrough on my desktop pc, and i have been following this guide Arch wiki - PCI passtrough via OVMF
I got to the mkinitcpio step, and i wanted to make a different kernel for gaming, since i want to use the regular drivers for normal linux usage. I made a custom mkinitcpio called mkcustominit.conf and i ran
#!/bin/bash
mkinitcpio -c /home/cpj/Projects/Windows/mkcustominit.conf -g /boot/linux-gaming.imgI then duplicated my boot loader to /boot/loader/entries/gaming.conf and wrote it as:
title Arch Linux
linux /linux-gaming.img
initrd /initramfs-linux.img
options cryptdevice=UUID=d0a76cb1-6972-49bf-84ff-399753408f95:cryptlvm root=/dev/mapper/partyVan-root resume=/dev/mapper/partyVan-swap rootfstype=ext4 rw intel_iommu=onHowever when i boot i get an error saying the kernel is unsupported. Did a miss a step or is this not the correct way to do what i am trying to do?
Offline
mkinitcpio makes initrd images, not kernel images.
Offline