liminix/modules/arch/arm.nix

12 lines
256 B
Nix
Raw Permalink Normal View History

2023-11-05 20:56:25 +00:00
{ lib, lim, pkgs, config, ...}:
{
config = {
kernel.config = {
OF = "y";
};
kernel.makeTargets = ["arch/arm/boot/zImage"];
2023-11-05 20:56:25 +00:00
hardware.ram.startAddress = lim.parseInt "0x40000000";
2023-12-29 17:07:47 +00:00
system.outputs.u-boot = pkgs.ubootQemuArm;
2023-11-05 20:56:25 +00:00
};
}