summary refs log tree commit diff
path: root/nixos/lib/qemu-common.nix
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2021-06-23 17:46:46 +0200
committerrnhmjoj <rnhmjoj@inventati.org>2021-09-18 16:58:16 +0200
commitb29c2f97c37f7cb4a1b3411ff9888a49873597d2 (patch)
tree7352ff4d0310afcb03cb1be6ad15745c28d3cd5f /nixos/lib/qemu-common.nix
parentb8bfc81d5b2d88b734a311f712fc0ba2b267f9e0 (diff)
downloadnixpkgs-b29c2f97c37f7cb4a1b3411ff9888a49873597d2.tar
nixpkgs-b29c2f97c37f7cb4a1b3411ff9888a49873597d2.tar.gz
nixpkgs-b29c2f97c37f7cb4a1b3411ff9888a49873597d2.tar.bz2
nixpkgs-b29c2f97c37f7cb4a1b3411ff9888a49873597d2.tar.lz
nixpkgs-b29c2f97c37f7cb4a1b3411ff9888a49873597d2.tar.xz
nixpkgs-b29c2f97c37f7cb4a1b3411ff9888a49873597d2.tar.zst
nixpkgs-b29c2f97c37f7cb4a1b3411ff9888a49873597d2.zip
nixos/lib/qemu-flags: rename to qemu-common
The current name is misleading: it doesn't contain cli arguments,
but several constants and utility functions related to qemu.
This commit also removes the use of `with import ...` for clarity.
Diffstat (limited to 'nixos/lib/qemu-common.nix')
-rw-r--r--nixos/lib/qemu-common.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/nixos/lib/qemu-common.nix b/nixos/lib/qemu-common.nix
new file mode 100644
index 00000000000..84f9060acd6
--- /dev/null
+++ b/nixos/lib/qemu-common.nix
@@ -0,0 +1,32 @@
+# QEMU-related utilities shared between various Nix expressions.
+{ lib, pkgs }:
+
+let
+  zeroPad = n:
+    lib.optionalString (n < 16) "0" +
+      (if n > 255
+       then throw "Can't have more than 255 nets or nodes!"
+       else lib.toHexString n);
+in
+
+rec {
+  qemuNicMac = net: machine: "52:54:00:12:${zeroPad net}:${zeroPad machine}";
+
+  qemuNICFlags = nic: net: machine:
+    [ "-device virtio-net-pci,netdev=vlan${toString nic},mac=${qemuNicMac net machine}"
+      ''-netdev vde,id=vlan${toString nic},sock="$QEMU_VDE_SOCKET_${toString net}"''
+    ];
+
+  qemuSerialDevice = if pkgs.stdenv.isi686 || pkgs.stdenv.isx86_64 then "ttyS0"
+        else if (with pkgs.stdenv.hostPlatform; isAarch32 || isAarch64 || isPower) then "ttyAMA0"
+        else throw "Unknown QEMU serial device for system '${pkgs.stdenv.hostPlatform.system}'";
+
+  qemuBinary = qemuPkg: {
+    x86_64-linux = "${qemuPkg}/bin/qemu-kvm -cpu max";
+    armv7l-linux = "${qemuPkg}/bin/qemu-system-arm -enable-kvm -machine virt -cpu host";
+    aarch64-linux = "${qemuPkg}/bin/qemu-system-aarch64 -enable-kvm -machine virt,gic-version=host -cpu host";
+    powerpc64le-linux = "${qemuPkg}/bin/qemu-system-ppc64 -machine powernv";
+    powerpc64-linux = "${qemuPkg}/bin/qemu-system-ppc64 -machine powernv";
+    x86_64-darwin = "${qemuPkg}/bin/qemu-kvm -cpu max";
+  }.${pkgs.stdenv.hostPlatform.system} or "${qemuPkg}/bin/qemu-kvm";
+}