2022-06-25 17:37:18 +02:00
|
|
|
{
|
2024-01-24 10:21:08 +01:00
|
|
|
inputs.nixpkgs.url = "github:rodarima/nixpkgs/fix-pkgs-static-gcc-march";
|
2023-02-16 11:57:52 +01:00
|
|
|
|
2024-01-24 12:53:10 +01:00
|
|
|
outputs = { self, nixpkgs, ... }:
|
2024-01-17 18:22:30 +01:00
|
|
|
let
|
|
|
|
system = "x86_64-linux";
|
|
|
|
overlay = import ./overlay.nix;
|
|
|
|
pkgs = import nixpkgs { inherit system; };
|
|
|
|
in {
|
|
|
|
overlay = import ./overlay.nix;
|
|
|
|
nixosConfigurations = {
|
2024-01-24 12:50:41 +01:00
|
|
|
# The qemu configuration defines a system that runs in the RISC-V
|
2024-01-17 18:22:30 +01:00
|
|
|
# architecture, but is build from an x86 host machine.
|
2024-01-24 12:50:41 +01:00
|
|
|
qemu = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "${system}";
|
|
|
|
modules = [
|
|
|
|
./configuration.nix
|
|
|
|
./vm.nix
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
# Same, but disable compressed instructions
|
|
|
|
qemu-nc = nixpkgs.lib.nixosSystem {
|
2024-01-17 18:22:30 +01:00
|
|
|
system = "${system}";
|
2024-01-24 12:50:41 +01:00
|
|
|
modules = [
|
|
|
|
./configuration.nix
|
|
|
|
./vm.nix
|
|
|
|
./no-compressed.nix
|
2024-01-17 18:22:30 +01:00
|
|
|
];
|
2022-07-09 05:28:56 +02:00
|
|
|
};
|
2024-03-01 18:33:30 +01:00
|
|
|
|
|
|
|
# FPGA Lagarto Hun CPU
|
|
|
|
lagarto-hun = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "${system}";
|
|
|
|
modules = [
|
|
|
|
./configuration.nix
|
|
|
|
./lagarto-hun.nix
|
2024-03-04 14:44:49 +01:00
|
|
|
./no-compressed.nix
|
2024-03-01 18:33:30 +01:00
|
|
|
];
|
|
|
|
};
|
2024-01-17 18:22:30 +01:00
|
|
|
};
|
2023-02-16 12:49:58 +01:00
|
|
|
|
2024-01-17 18:22:30 +01:00
|
|
|
# A development shell with QEMU ready to boot the RISC-V system in an x86
|
|
|
|
# machine.
|
|
|
|
devShells.x86_64-linux.default =
|
|
|
|
let
|
2024-01-24 12:50:41 +01:00
|
|
|
nixosconf = self.nixosConfigurations.qemu-nc;
|
2024-01-17 18:22:30 +01:00
|
|
|
syspkgs = nixosconf.pkgs;
|
2024-01-19 12:32:06 +01:00
|
|
|
toplevel = nixosconf.config.system.build.toplevel;
|
2024-01-24 13:09:49 +01:00
|
|
|
in pkgs.mkShell {
|
2024-01-17 18:22:30 +01:00
|
|
|
pname = "qemu-shell";
|
2024-01-25 15:34:09 +01:00
|
|
|
buildInputs = with pkgs; [ qemu e2fsprogs ];
|
2024-01-17 18:22:30 +01:00
|
|
|
# Here we tell the run script where to find the system
|
2024-01-17 18:33:58 +01:00
|
|
|
NIXOS_SYSTEM_TOPLEVEL = toplevel;
|
2024-01-18 17:58:00 +01:00
|
|
|
OPENSBI = syspkgs.opensbi-uboot;
|
2022-06-25 17:37:18 +02:00
|
|
|
};
|
2024-03-04 18:32:25 +01:00
|
|
|
devShells.x86_64-linux.lagarto-hun =
|
|
|
|
let
|
|
|
|
nixosconf = self.nixosConfigurations.lagarto-hun;
|
|
|
|
syspkgs = nixosconf.pkgs;
|
|
|
|
build = nixosconf.config.system.build;
|
|
|
|
in pkgs.mkShell {
|
|
|
|
pname = "lagarto-hun-shell";
|
2024-03-07 16:49:48 +01:00
|
|
|
TOPLEVEL = build.toplevel;
|
2024-03-04 18:32:25 +01:00
|
|
|
OPENSBI = syspkgs.opensbi;
|
|
|
|
KERNEL = build.kernel;
|
|
|
|
INITRD = build.initialRamdisk;
|
2024-03-07 12:05:10 +01:00
|
|
|
ROOTFS = build.sdImage;
|
2024-03-07 16:49:48 +01:00
|
|
|
UBOOT_ENV = syspkgs.uboot-env;
|
2024-03-04 18:32:25 +01:00
|
|
|
};
|
2024-01-17 18:22:30 +01:00
|
|
|
};
|
2022-06-25 17:37:18 +02:00
|
|
|
}
|