allow changing hardware device in tests

This commit is contained in:
Daniel Barlow 2022-09-20 16:09:44 +01:00
parent e892dc6e9c
commit ad759b7c6d
3 changed files with 13 additions and 1 deletions

11
devices/qemu.nix Normal file
View file

@ -0,0 +1,11 @@
{
system = {
crossSystem = {
config = "mips-unknown-linux-musl";
gcc = {
abi = "32";
arch = "mips32"; # maybe mips_24kc-
};
};
};
}