···71717272# Precalculate all normalisations with a single Nix call. Calling Nix for each
7373# string individually would take way too long
7474-nix-instantiate --eval --strict --json \
7474+nix-instantiate --eval --strict --json --show-trace \
7575 --argstr libpath "$TEST_LIB" \
7676 --argstr dir "$tmp/strings" \
7777 "$SCRIPT_DIR"/prop.nix \
+1-1
nixos/lib/qemu-common.nix
···1919 ];
20202121 qemuSerialDevice =
2222- if with pkgs.stdenv.hostPlatform; isx86 || isMips64 || isRiscV then "ttyS0"
2222+ if with pkgs.stdenv.hostPlatform; isx86 || isLoongArch64 || isMips64 || isRiscV then "ttyS0"
2323 else if (with pkgs.stdenv.hostPlatform; isAarch || isPower) then "ttyAMA0"
2424 else throw "Unknown QEMU serial device for system '${pkgs.stdenv.hostPlatform.system}'";
2525