blob: 3e797590dfad5ffcfc482ce4e2b86149e24d126f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{ config, lib, pkgs, ... }:
with lib;
{
config = mkIf (config.turris.board == "omnia") {
# Use early print to the serial console
boot.kernelParams = [
"earlyprintk" "console=ttyS0,115200"
];
# Force load of Turris Omnia leds
boot.kernelModules = [
"leds_turris_omnia"
];
# Explicitly set device tree to ensure we load the correct one.
hardware.deviceTree.name = "armada-385-turris-omnia.dtb";
# The additional administration packages
environment.systemPackages = with pkgs; [
libatsha204
];
# Kernel patches for Linux 6.0 for Turris Omnia
boot.kernelPatches = mkIf (versionOlder config.boot.kernelPackages.kernel.version "6.1")
(map (p: {
name = toString p;
patch = p;
}) (filesystem.listFilesRecursive ./omnia-kernel-patches));
};
}
|