mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-16 22:49:25 +03:00

After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRev0128fbb0a5
result/bin/apply-formatting $NIXPKGS_PATH
74 lines
1.7 KiB
Nix
74 lines
1.7 KiB
Nix
# This module adds Memtest86+ to the GRUB boot menu.
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
with lib;
|
|
|
|
let
|
|
memtest86 = pkgs.memtest86plus;
|
|
cfg = config.boot.loader.grub.memtest86;
|
|
in
|
|
|
|
{
|
|
options = {
|
|
|
|
boot.loader.grub.memtest86 = {
|
|
|
|
enable = mkOption {
|
|
default = false;
|
|
type = types.bool;
|
|
description = ''
|
|
Make Memtest86+, a memory testing program, available from the GRUB
|
|
boot menu.
|
|
'';
|
|
};
|
|
|
|
params = mkOption {
|
|
default = [ ];
|
|
example = [ "console=ttyS0,115200" ];
|
|
type = types.listOf types.str;
|
|
description = ''
|
|
Parameters added to the Memtest86+ command line. As of memtest86+ 5.01
|
|
the following list of (apparently undocumented) parameters are
|
|
accepted:
|
|
|
|
- `console=...`, set up a serial console.
|
|
Examples:
|
|
`console=ttyS0`,
|
|
`console=ttyS0,9600` or
|
|
`console=ttyS0,115200n8`.
|
|
|
|
- `btrace`, enable boot trace.
|
|
|
|
- `maxcpus=N`, limit number of CPUs.
|
|
|
|
- `onepass`, run one pass and exit if there
|
|
are no errors.
|
|
|
|
- `tstlist=...`, list of tests to run.
|
|
Example: `0,1,2`.
|
|
|
|
- `cpumask=...`, set a CPU mask, to select CPUs
|
|
to use for testing.
|
|
|
|
This list of command line options was obtained by reading the
|
|
Memtest86+ source code.
|
|
'';
|
|
};
|
|
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
boot.loader.grub.extraEntries = ''
|
|
menuentry "Memtest86+" {
|
|
linux @bootRoot@/memtest.bin ${toString cfg.params}
|
|
}
|
|
'';
|
|
boot.loader.grub.extraFiles."memtest.bin" = "${memtest86}/memtest.bin";
|
|
};
|
|
}
|