liminix/modules/arch/arm.nix

12 lines
251 B
Nix
Raw Normal View History

2024-06-29 21:59:27 +00:00
{ lim, pkgs, config, ...}:
2023-11-05 20:56:25 +00:00
{
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
};
}