forked from dan/liminix
1
0
Fork 0
liminix/devices/qemu/default.nix

55 lines
1.5 KiB
Nix
Raw Normal View History

# This "device" generates images that can be used with the QEMU
# emulator. The default output is a directory containing separate
# kernel (uncompressed vmlinux) and initrd (squashfs) images
{
system = {
crossSystem = {
config = "mips-unknown-linux-musl";
gcc = {
abi = "32";
arch = "mips32"; # maybe mips_24kc-
};
};
};
description = ''
2023-11-10 21:17:20 +00:00
QEMU MIPS
*********
2023-11-10 21:17:20 +00:00
This target produces an image for
QEMU, the "generic and open source machine emulator and
virtualizer".
MIPS QEMU emulates a "Malta" board, which was an ATX form factor
evaluation board made by MIPS Technologies, but mostly in Liminix
we use paravirtualized devices (Virtio) instead of emulating
2023-11-10 21:17:20 +00:00
hardware.
Building an image for QEMU results in a :file:`result/` directory
2023-11-10 21:17:20 +00:00
containing ``run.sh`` ``vmlinux``, and ``rootfs`` files. To invoke
the emulator, run ``run.sh``.
The configuration includes two emulated "hardware" ethernet
devices and the kernel :code:`mac80211_hwsim` module to
provide an emulated wlan device. To read more about how
to connect to this network, refer to :ref:`qemu-networking`
in the Development manual.
'';
2023-11-18 11:53:08 +00:00
module = {pkgs, config, lim, ... }: {
imports = [
../../modules/arch/mipseb.nix
../families/qemu.nix
];
kernel = {
config = {
MIPS_MALTA= "y";
CPU_MIPS32_R2= "y";
SERIAL_8250= "y";
SERIAL_8250_CONSOLE= "y";
};
};
};
}