2023-08-11 19:15:17 +02:00
|
|
|
## Kernel-related options
|
|
|
|
## ======================
|
2023-08-11 22:12:57 +02:00
|
|
|
##
|
|
|
|
##
|
2023-08-11 19:15:17 +02:00
|
|
|
|
|
|
|
{ lib, pkgs, config, ...}:
|
|
|
|
let
|
|
|
|
inherit (lib) mkEnableOption mkOption types isDerivation hasAttr ;
|
|
|
|
inherit (pkgs.pseudofile) dir symlink;
|
|
|
|
inherit (pkgs.liminix.networking) address interface;
|
|
|
|
inherit (pkgs.liminix.services) bundle;
|
2024-01-02 20:40:57 +01:00
|
|
|
inherit (pkgs) liminix;
|
2023-08-11 19:15:17 +02:00
|
|
|
|
|
|
|
type_service = pkgs.liminix.lib.types.service;
|
|
|
|
|
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
kernel = {
|
2023-11-18 15:21:18 +01:00
|
|
|
src = mkOption { type = types.path; } ;
|
2023-08-11 19:15:17 +02:00
|
|
|
modular = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = "support loadable kernel modules";
|
|
|
|
};
|
|
|
|
extraPatchPhase = mkOption {
|
|
|
|
default = "true";
|
|
|
|
type = types.lines;
|
2023-09-20 18:57:17 +02:00
|
|
|
};
|
2023-08-11 19:15:17 +02:00
|
|
|
config = mkOption {
|
|
|
|
description = ''
|
|
|
|
Kernel config options, as listed in Kconfig* files in the
|
|
|
|
kernel source tree. Do not include the leading "CONFIG_"
|
|
|
|
prefix when defining these. Most values are "y", "n" or "m",
|
|
|
|
but sometimes other strings are also used.
|
|
|
|
'';
|
|
|
|
type = types.attrsOf types.nonEmptyStr;
|
2023-08-11 22:12:57 +02:00
|
|
|
example = lib.literalExpression ''
|
|
|
|
{
|
|
|
|
BRIDGE = "y";
|
|
|
|
TMPFS = "y";
|
|
|
|
FW_LOADER_USER_HELPER = "n";
|
|
|
|
};
|
|
|
|
'';
|
2023-08-11 19:15:17 +02:00
|
|
|
};
|
2024-01-02 20:40:57 +01:00
|
|
|
makeTargets = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
};
|
2023-08-11 19:15:17 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
config = {
|
2024-01-02 20:40:57 +01:00
|
|
|
system.outputs =
|
|
|
|
let k = liminix.builders.kernel.override {
|
|
|
|
inherit (config.kernel) config src extraPatchPhase;
|
|
|
|
targets = config.kernel.makeTargets;
|
|
|
|
};
|
|
|
|
in {
|
|
|
|
kernel = k.vmlinux;
|
|
|
|
zimage = k.zImage;
|
|
|
|
};
|
|
|
|
|
2023-08-11 19:15:17 +02:00
|
|
|
kernel = rec {
|
|
|
|
modular = true; # disabling this is not yet supported
|
2024-01-02 20:40:57 +01:00
|
|
|
makeTargets = ["vmlinux"];
|
2023-08-11 19:15:17 +02:00
|
|
|
config = {
|
|
|
|
IKCONFIG = "y";
|
|
|
|
IKCONFIG_PROC = "y";
|
|
|
|
PROC_FS = "y";
|
|
|
|
|
|
|
|
KEXEC = "y";
|
|
|
|
MODULES = if modular then "y" else "n";
|
|
|
|
MODULE_SIG = if modular then "y" else "n";
|
|
|
|
DEBUG_FS = "y";
|
|
|
|
|
|
|
|
# basic networking protocols
|
|
|
|
NET = "y";
|
|
|
|
UNIX = "y";
|
|
|
|
INET = "y";
|
|
|
|
IPV6 = "y";
|
|
|
|
PACKET = "y"; # for ppp, tcpdump ...
|
|
|
|
SYSVIPC= "y";
|
|
|
|
|
2023-10-29 12:49:03 +01:00
|
|
|
NETDEVICES = "y"; # even PPP needs this
|
|
|
|
|
2023-08-11 19:15:17 +02:00
|
|
|
# disabling this option causes the kernel to use an "empty"
|
|
|
|
# initramfs instead: it has a /dev/console node and not much
|
|
|
|
# else. Note that pid 1 is started *before* the root
|
|
|
|
# filesystem is mounted and it expects /dev/console to be
|
|
|
|
# present already
|
|
|
|
BLK_DEV_INITRD = lib.mkDefault "n"; # overriden by initramfs module
|
|
|
|
|
|
|
|
# s6-linux-init mounts this on /dev
|
|
|
|
DEVTMPFS = "y";
|
|
|
|
# some or all of these may be fix for "tmpfs: Unknown parameter 'mode'" error
|
|
|
|
TMPFS = "y";
|
|
|
|
TMPFS_POSIX_ACL = "y";
|
|
|
|
TMPFS_XATTR = "y";
|
|
|
|
|
|
|
|
FW_LOADER = "y";
|
|
|
|
FW_LOADER_COMPRESS = "y";
|
|
|
|
# We don't have a user helper, so we get multiple 60s pauses
|
|
|
|
# at boot time unless we disable trying to call it.
|
|
|
|
# https://lkml.org/lkml/2013/8/5/175
|
|
|
|
FW_LOADER_USER_HELPER = "n";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|