brainix/nix/platform.nix
2026-02-13 17:06:24 +09:00

18 lines
365 B
Nix

{ lib }:
let
base = lib.systems.examples.sheevaplug;
in base // {
system = "armv5tel-linux";
kernelAutoModules = true;
kernelBaseConfig = "brain_defconfig";
kernelTarget = "zImage";
kernelDTB = true;
kernelExtraConfig = ''
# Disable OABI for seccomp/systemd compatibility.
OABI_COMPAT n
# Onboard serial
SERIAL_OF_PLATFORM y
'';
}