863045b86b
it's not 0 on arm32, so this will be useful for qemu
18 lines
430 B
Nix
18 lines
430 B
Nix
{ lib, pkgs, config, ...}:
|
|
{
|
|
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 = 0;
|
|
boot.commandLine = [
|
|
"console=ttyS0,115200" # true of all mips we've yet encountered
|
|
];
|
|
};
|
|
}
|