Add script to setup kvm

This commit is contained in:
David Venhoff 2025-09-08 16:35:11 +02:00
parent b44a0a5ef3
commit 2cc2264dde

10
setup-kvm.sh Executable file
View File

@ -0,0 +1,10 @@
if [ ! -d KVM-Nyx-fork ]; then
echo "Could not find KVM-Nyx-fork"
echo "Download from https://git.cs.tu-dortmund.de/david.venhoff/KVM-Nyx-fork"
echo "Then setup the config with \`make oldconfig\`"
exit
fi
cd KVM-Nyx-fork || exit
sh compile_kvm_nyx_standalone.sh
sh load_kvm_nyx.sh
echo "Done"