qemu armv7

This commit is contained in:
Daniel Barlow 2023-11-05 20:56:25 +00:00
parent c94d12934f
commit 6489a39424
4 changed files with 96 additions and 1 deletions

9
modules/arch/arm.nix Normal file
View file

@ -0,0 +1,9 @@
{ lib, lim, pkgs, config, ...}:
{
config = {
kernel.config = {
OF = "y";
};
hardware.ram.startAddress = lim.parseInt "0x40000000";
};
}