22 lines
		
	
	
		
			1016 B
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			1016 B
		
	
	
	
		
			INI
		
	
	
	
	
	
| #            __          ____                        ____  _____
 | |
| #     ____  / /_  __  __/ / /___  ____ ___  ___     / __ \/ ___/
 | |
| #    / __ \/ __ \/ / / / / / __ \/ __ `__ \/ _ \   / / / /\__ \
 | |
| #   / /_/ / / / / /_/ / / / /_/ / / / / / /  __/  / /_/ /___/ /
 | |
| #  / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/   \____//____/
 | |
| # /_/          /____/
 | |
| 
 | |
| # What ? This Kickstart file bootstraps a minimal headless guest hypervisor optimized for AMD CPUs.
 | |
| # 'v' for virtual machine, 'h' for hypervisor', 'a' for amd, 'm' for minimal, 'd' for development only.
 | |
| 
 | |
| # ATTENTION : this kickstart file will automatically DESTROY the main virtual disk 'vda' and all of its contents. 
 | |
| # Bye bye!
 | |
| 
 | |
| %include vhmd.cfg # Includes vhmd.cfg, a hypervisor. 
 | |
| 
 | |
| %post # Beginning of %post section
 | |
| 
 | |
| sed -i 's/\(quiet\)/\1 amd_iommu=on amd_iommu=pt rd.driver.pre=vfio-pci/i' /etc/default/grub # Load kernel modules in grub. 
 | |
| dracut --force # Regenerate initramfs 
 | |
| grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub
 | |
| 
 | |
| %end # End of the %post section |