From 2cc2264ddedf401e6e5a2e31b89d056592149d35 Mon Sep 17 00:00:00 2001 From: David Venhoff Date: Mon, 8 Sep 2025 16:35:11 +0200 Subject: [PATCH] Add script to setup kvm --- setup-kvm.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 setup-kvm.sh diff --git a/setup-kvm.sh b/setup-kvm.sh new file mode 100755 index 0000000..0a48bfb --- /dev/null +++ b/setup-kvm.sh @@ -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" \ No newline at end of file