mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 18:08:51 +08:00 
			
		
		
		
	 6272abbbb8
			
		
	
	6272abbbb8
	
	
	
		
			
			- Updates common to pull in new locked edit [NO NEW TESTS NEEDED] Signed-off-by: Jason T. Greene <jason.greene@redhat.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			431 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			431 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| //go:build tempoff
 | |
| 
 | |
| package qemu
 | |
| 
 | |
| var (
 | |
| 	QemuCommand = "qemu-system-x86_64w"
 | |
| )
 | |
| 
 | |
| func (q *QEMUStubber) addArchOptions(_ *setNewMachineCMDOpts) []string {
 | |
| 	// "qemu64" level is used, because "host" is not supported with "whpx" acceleration.
 | |
| 	// It is a stable choice for running on bare metal and inside Hyper-V machine with nested virtualization.
 | |
| 	opts := []string{"-machine", "q35,accel=whpx:tcg", "-cpu", "qemu64"}
 | |
| 	return opts
 | |
| }
 |