2023-11-10 22:17:20 +01:00
|
|
|
rec {
|
2022-09-20 17:09:44 +02:00
|
|
|
system = {
|
|
|
|
crossSystem = {
|
|
|
|
config = "mips-unknown-linux-musl";
|
|
|
|
gcc = {
|
|
|
|
abi = "32";
|
|
|
|
arch = "mips32"; # maybe mips_24kc-
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2022-10-15 19:55:33 +02:00
|
|
|
|
2023-09-28 13:17:30 +02:00
|
|
|
description = ''
|
2023-11-10 22:17:20 +01:00
|
|
|
QEMU MIPS
|
|
|
|
*********
|
2023-09-28 13:17:30 +02:00
|
|
|
|
2023-11-10 22:17:20 +01:00
|
|
|
This target produces an image for
|
2023-09-28 13:17:30 +02:00
|
|
|
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 22:17:20 +01:00
|
|
|
hardware.
|
2023-09-28 13:17:30 +02:00
|
|
|
|
|
|
|
Building an image for QEMU results in a :file:`result/` directory
|
2023-11-10 22:17:20 +01:00
|
|
|
containing ``run.sh`` ``vmlinux``, and ``rootfs`` files. To invoke
|
|
|
|
the emulator, run ``run.sh``.
|
2023-09-28 13:17:30 +02:00
|
|
|
|
|
|
|
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-10 22:17:20 +01:00
|
|
|
installer = "vmroot";
|
|
|
|
|
2023-03-01 23:24:58 +01:00
|
|
|
module = {pkgs, config, ... }: {
|
2023-09-20 22:30:18 +02:00
|
|
|
imports = [ ../../modules/arch/mipseb.nix ];
|
2023-02-10 18:54:33 +01:00
|
|
|
kernel = {
|
|
|
|
src = pkgs.pkgsBuildBuild.fetchurl {
|
|
|
|
name = "linux.tar.gz";
|
2023-02-22 19:41:41 +01:00
|
|
|
url = "https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.71.tar.gz";
|
|
|
|
hash = "sha256-yhO2cXIeIgUxkSZf/4aAsF11uxyh+UUZu6D1h92vCD8=";
|
2022-10-15 19:55:33 +02:00
|
|
|
};
|
2023-02-10 18:54:33 +01:00
|
|
|
config = {
|
|
|
|
MIPS_MALTA= "y";
|
|
|
|
CPU_MIPS32_R2= "y";
|
2022-09-21 00:04:08 +02:00
|
|
|
|
2023-04-02 19:49:40 +02:00
|
|
|
MTD = "y";
|
|
|
|
MTD_BLOCK = "y";
|
2023-11-05 20:13:51 +01:00
|
|
|
MTD_CMDLINE_PARTS = "y";
|
|
|
|
MTD_PHRAM = "y";
|
2023-04-02 19:49:40 +02:00
|
|
|
|
2023-02-10 18:54:33 +01:00
|
|
|
VIRTIO_MENU = "y";
|
|
|
|
PCI = "y";
|
|
|
|
VIRTIO_PCI = "y";
|
|
|
|
BLOCK = "y";
|
|
|
|
VIRTIO_BLK = "y";
|
|
|
|
VIRTIO_NET = "y";
|
2022-10-18 23:28:07 +02:00
|
|
|
|
2023-02-10 18:54:33 +01:00
|
|
|
SERIAL_8250= "y";
|
|
|
|
SERIAL_8250_CONSOLE= "y";
|
|
|
|
};
|
2022-09-20 19:54:27 +02:00
|
|
|
};
|
2023-03-03 23:52:33 +01:00
|
|
|
hardware =
|
2023-03-01 23:24:58 +01:00
|
|
|
let
|
|
|
|
mac80211 = pkgs.mac80211.override {
|
|
|
|
drivers = ["mac80211_hwsim"];
|
2023-07-13 20:24:59 +02:00
|
|
|
klibBuild = config.system.outputs.kernel.modulesupport;
|
2023-03-01 23:24:58 +01:00
|
|
|
};
|
|
|
|
in {
|
2023-11-10 22:17:20 +01:00
|
|
|
defaultOutput = installer;
|
2023-09-20 23:53:59 +02:00
|
|
|
rootDevice = "/dev/mtdblock0";
|
2023-09-20 19:33:08 +02:00
|
|
|
flash.eraseBlockSize = "65536"; # c.f. pkgs/run-liminix-vm/run-liminix-vm.sh
|
2023-09-01 00:50:42 +02:00
|
|
|
networkInterfaces =
|
|
|
|
let inherit (config.system.service.network) link;
|
|
|
|
in {
|
2023-09-01 18:54:15 +02:00
|
|
|
wan = link.build { ifname = "eth0"; };
|
|
|
|
lan = link.build { ifname = "eth1"; };
|
2023-03-01 23:24:58 +01:00
|
|
|
|
2023-09-01 00:50:42 +02:00
|
|
|
wlan_24 = link.build {
|
|
|
|
ifname = "wlan0";
|
|
|
|
dependencies = [ mac80211 ];
|
|
|
|
};
|
2023-03-01 23:24:58 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-09-20 19:54:27 +02:00
|
|
|
};
|
2022-09-20 17:09:44 +02:00
|
|
|
}
|