forked from dan/liminix
1
0
Fork 0
liminix/modules/arch/mips.nix

19 lines
459 B
Nix
Raw Normal View History

{ lib, pkgs, config, lim, ...}:
{
config = {
kernel.config = {
MIPS_ELF_APPENDED_DTB = "y";
2023-09-20 16:50:21 +00:00
MIPS_BOOTLOADER_CMDLINE_REQUIRE_COOKIE = "y";
MIPS_BOOTLOADER_CMDLINE_COOKIE = "\"liminix\"";
MIPS_CMDLINE_DTB_EXTEND = "y";
2023-09-30 20:52:13 +00:00
OF = "y";
USE_OF = "y";
};
2023-11-05 19:13:51 +00:00
hardware.ram.startAddress = lim.parseInt "0x80000000";
boot.commandLine = [
"console=ttyS0,115200" # true of all mips we've yet encountered
];
};
}