forked from DGNum/liminix
f75995e895
for settings that are common to all mipse[lb] but would not be shared with e.g. aarch64 or x86
11 lines
215 B
Nix
11 lines
215 B
Nix
{ lib, pkgs, config, ...}:
|
|
{
|
|
config = {
|
|
kernel.config = {
|
|
MIPS_ELF_APPENDED_DTB = "y";
|
|
};
|
|
boot.commandLine = [
|
|
"console=ttyS0,115200" # true of all mips we've yet encountered
|
|
];
|
|
};
|
|
}
|