blob: 0b2a514a1fa3f2fd728a553fcfc85c91b423f0c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
{
inputs = {
fenix-flake = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
self,
fenix-flake,
flake-utils,
nixpkgs,
}:
flake-utils.lib.eachSystem
[
"aarch64-linux"
"x86_64-linux"
]
(
system:
let
pkgs = nixpkgs.legacyPackages.${system};
fenix = fenix-flake.packages.${system};
arches = import ./arches.nix;
python = pkgs.python3.withPackages (ps: [ ps.ninja ]);
rust-toolchain = fenix.combine (
[
fenix.stable.cargo
fenix.stable.rustc
fenix.stable.clippy
]
++ (builtins.map ({ rust-target, ... }: fenix.targets.${rust-target}.stable.rust-std) (
builtins.attrValues arches
))
);
packages = rec {
kernel = import ./boards {
inherit
arches
libkernel
nixpkgs
pkgs
python
system
;
};
libkernel = import ./crates {
inherit
arches
fenix
nixpkgs
system
;
};
};
run-qemu-virt = pkgs.writeShellApplication {
name = "run-qemu-virt";
runtimeInputs = [ pkgs.qemu ];
text = ''
set -x
qemu-system-riscv64 \
-machine virt \
-m 1G \
-nographic \
-bios none \
-kernel ${packages.kernel.qemu-virt}/vernos_kernel.elf \
"$@"
'';
};
in
{
apps = {
default = {
type = "app";
program = pkgs.lib.getExe run-qemu-virt;
};
run = {
type = "app";
program = pkgs.lib.getExe run-qemu-virt;
};
debug = {
type = "app";
program = pkgs.lib.getExe (
pkgs.writeShellApplication {
name = "run-vm-debug";
runtimeInputs = [ run-qemu-virt ];
text = ''
port=$(( 1000 * ("$(id -u)" - 990) ))
run-qemu-virt -gdb tcp::$port -S "$@"
'';
}
);
};
gdb = {
type = "app";
program = pkgs.lib.getExe (
pkgs.writeShellApplication {
name = "gdb";
text = ''
port=$(( 1000 * ("$(id -u)" - 990) ))
rust-gdb ${packages.kernel.qemu-virt}/vernos_kernel.elf \
-ex "symbol-file ${packages.kernel.qemu-virt}/vernos_kernel.sym" \
-ex "target remote 127.0.0.1:$port" \
-ex "set riscv use-compressed-breakpoints yes" \
-ex "layout asm" \
-ex "layout regs" \
-ex "focus cmd" \
-ex "tbreak hart0_boot" \
-ex "c"
'';
}
);
};
};
devShells.default = pkgs.mkShell {
nativeBuildInputs =
[
(pkgs.callPackage ./nix/miri.nix { inherit fenix; })
pkgs.cargo-watch
pkgs.qemu
python
rust-toolchain
]
++ (builtins.map (
{ crossSystem, ... }:
(import nixpkgs {
inherit system;
crossSystem.config = crossSystem;
}).stdenv.cc.bintools.bintools
) (builtins.attrValues arches));
};
packages = flake-utils.lib.flattenTree packages;
}
);
}
|