There is nothing in this commit except for the changes made by nix-shell -p nixfmt-rfc-style --run "nixfmt ." If this has mucked up your open branches then sorry about that. You can probably nixfmt them to match before merging
19 lines
449 B
Nix
19 lines
449 B
Nix
{ config, lim, ... }:
|
|
{
|
|
config = {
|
|
kernel.config = {
|
|
MIPS_ELF_APPENDED_DTB = "y";
|
|
MIPS_BOOTLOADER_CMDLINE_REQUIRE_COOKIE = "y";
|
|
MIPS_BOOTLOADER_CMDLINE_COOKIE = "\"liminix\"";
|
|
MIPS_CMDLINE_DTB_EXTEND = "y";
|
|
|
|
OF = "y";
|
|
USE_OF = "y";
|
|
};
|
|
hardware.ram.startAddress = lim.parseInt "0x80000000";
|
|
boot.commandLine = [
|
|
"console=ttyS0,115200" # true of all mips we've yet encountered
|
|
];
|
|
};
|
|
}
|