This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from subprocess import Popen, call | |
from time import sleep | |
threads = 8 | |
mem = 8 | |
eth0mac = '52:54:65:03:DC:ED' | |
bootSplash = '/home/tux/vms/splash/boot.jpg' | |
ovmfCode = '/home/tux/vms/uefi/OVMF_CODE.fd' | |
ovmfVars = '/home/tux/vms/uefi/OVMF_VARS.fd' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from subprocess import Popen, call | |
from time import sleep | |
threads = 8 | |
mem = 8 | |
eth0mac = '52:54:00:12:34:56' | |
bootSplash = '/home/tux/vms/splash/boot.jpg' | |
ovmfCode = '/home/tux/src/1git/macos-kvm-pci-passthrough/OVMF_CODE.fd' | |
ovmfVars = '/home/tux/src/1git/macos-kvm-pci-passthrough/OVMF_VARS.fd' |