mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
7621b40d56
* Turn on the graphical GRUB boot screen for the installation CD. svn path=/nixos/branches/upstart-0.6/; revision=18340
26 lines
444 B
Nix
26 lines
444 B
Nix
# This module adds Memtest86 to the Grub boot menu on the CD. !!! It
|
|
# would be nice if this also worked for normal configurations.
|
|
|
|
{config, pkgs, ...}:
|
|
|
|
let
|
|
|
|
memtestPath = "/boot/memtest.bin";
|
|
|
|
in
|
|
|
|
{
|
|
boot.loader.grub.extraEntries =
|
|
''
|
|
menuentry "Memtest86+" {
|
|
linux16 ${memtestPath}
|
|
}
|
|
'';
|
|
|
|
isoImage.contents =
|
|
[ { source = pkgs.memtest86 + "/memtest.bin";
|
|
target = memtestPath;
|
|
}
|
|
];
|
|
}
|