2009-06-05 13:35:27 +00:00
|
|
|
# This module creates a bootable ISO image containing the given NixOS
|
|
|
|
# configuration. The derivation for the ISO image will be placed in
|
|
|
|
# config.system.build.isoImage.
|
|
|
|
|
2009-11-14 16:12:02 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2009-06-05 13:35:27 +00:00
|
|
|
|
|
|
|
let
|
2009-06-09 12:01:31 +00:00
|
|
|
|
|
|
|
options = {
|
|
|
|
|
2009-11-14 16:12:02 +00:00
|
|
|
isoImage.isoName = mkOption {
|
2009-06-09 15:23:03 +00:00
|
|
|
default = "cd.iso";
|
|
|
|
description = ''
|
|
|
|
Name of the generated ISO image file.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2009-11-14 16:12:02 +00:00
|
|
|
isoImage.compressImage = mkOption {
|
2009-06-09 15:23:03 +00:00
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether the ISO image should be compressed using
|
|
|
|
<command>bzip2</command>.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2009-11-14 16:12:02 +00:00
|
|
|
isoImage.volumeID = mkOption {
|
2009-06-09 15:23:03 +00:00
|
|
|
default = "NIXOS_BOOT_CD";
|
|
|
|
description = ''
|
|
|
|
Specifies the label or volume ID of the generated ISO image.
|
|
|
|
Note that the label is used by stage 1 of the boot process to
|
|
|
|
mount the CD, so it should be reasonably distinctive.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2009-11-14 16:12:02 +00:00
|
|
|
isoImage.contents = mkOption {
|
2009-06-09 12:01:31 +00:00
|
|
|
example =
|
|
|
|
[ { source = pkgs.memtest86 + "/memtest.bin";
|
|
|
|
target = "boot/memtest.bin";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
description = ''
|
2009-06-09 13:27:50 +00:00
|
|
|
This option lists files to be copied to fixed locations in the
|
|
|
|
generated ISO image.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2009-11-14 16:12:02 +00:00
|
|
|
isoImage.storeContents = mkOption {
|
2009-06-10 16:29:48 +00:00
|
|
|
example = [pkgs.stdenv];
|
2009-06-09 13:27:50 +00:00
|
|
|
description = ''
|
|
|
|
This option lists additional derivations to be included in the
|
|
|
|
Nix store in the generated ISO image.
|
2009-06-09 12:01:31 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2009-06-05 13:35:27 +00:00
|
|
|
|
2009-11-10 21:42:38 +00:00
|
|
|
# The Grub image.
|
|
|
|
grubImage = pkgs.runCommand "grub_eltorito" {}
|
|
|
|
''
|
2009-11-13 16:45:41 +00:00
|
|
|
${pkgs.grub2}/bin/grub-mkimage -o tmp biosdisk iso9660 help linux linux16 sh chain gfxterm vbe png jpeg
|
2009-11-10 21:42:38 +00:00
|
|
|
cat ${pkgs.grub2}/lib/grub/*/cdboot.img tmp > $out
|
|
|
|
''; # */
|
|
|
|
|
|
|
|
|
2009-06-05 13:35:27 +00:00
|
|
|
# The configuration file for Grub.
|
|
|
|
grubCfg =
|
|
|
|
''
|
2009-12-11 00:51:07 +00:00
|
|
|
set default=${builtins.toString config.boot.loader.grub.default}
|
|
|
|
set timeout=${builtins.toString config.boot.loader.grub.timeout}
|
2009-11-13 16:45:41 +00:00
|
|
|
|
|
|
|
if loadfont /boot/grub/unicode.pf2; then
|
|
|
|
set gfxmode=640x480
|
|
|
|
insmod gfxterm
|
|
|
|
insmod vbe
|
2010-07-13 11:48:40 +00:00
|
|
|
terminal_output gfxterm
|
2009-11-13 16:45:41 +00:00
|
|
|
|
|
|
|
insmod png
|
|
|
|
if background_image /boot/grub/splash.png; then
|
|
|
|
set color_normal=white/black
|
|
|
|
set color_highlight=black/white
|
|
|
|
else
|
|
|
|
set menu_color_normal=cyan/blue
|
|
|
|
set menu_color_highlight=white/blue
|
|
|
|
fi
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
${config.boot.loader.grub.extraEntries}
|
2009-06-05 13:35:27 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2009-06-09 12:01:31 +00:00
|
|
|
require = options;
|
|
|
|
|
2009-11-13 16:45:41 +00:00
|
|
|
boot.loader.grub.version = 2;
|
|
|
|
|
2009-11-14 16:12:02 +00:00
|
|
|
# Don't build the GRUB menu builder script, since we don't need it
|
|
|
|
# here and it causes a cyclic dependency.
|
|
|
|
boot.loader.grub.enable = false;
|
|
|
|
|
|
|
|
# !!! Hack - attributes expected by other modules.
|
|
|
|
system.build.menuBuilder = "true";
|
2010-02-18 11:35:39 +00:00
|
|
|
system.boot.loader.kernelFile = "bzImage";
|
2009-11-14 16:12:02 +00:00
|
|
|
environment.systemPackages = [ pkgs.grub2 ];
|
|
|
|
|
2009-06-05 13:35:27 +00:00
|
|
|
# In stage 1 of the boot, mount the CD/DVD as the root FS by label
|
|
|
|
# so that we don't need to know its device.
|
|
|
|
fileSystems =
|
|
|
|
[ { mountPoint = "/";
|
2009-06-09 15:23:03 +00:00
|
|
|
label = config.isoImage.volumeID;
|
2009-06-05 13:35:27 +00:00
|
|
|
}
|
2009-06-10 16:29:48 +00:00
|
|
|
{ mountPoint = "/nix/store";
|
|
|
|
fsType = "squashfs";
|
|
|
|
device = "/nix-store.squashfs";
|
|
|
|
options = "loop";
|
|
|
|
neededForBoot = true;
|
|
|
|
}
|
2009-06-05 13:35:27 +00:00
|
|
|
];
|
|
|
|
|
2009-06-10 16:29:48 +00:00
|
|
|
# We need squashfs in the initrd to mount the compressed Nix store,
|
|
|
|
# and aufs to make the root filesystem appear writable.
|
2009-12-15 14:05:01 +00:00
|
|
|
boot.extraModulePackages =
|
|
|
|
optional
|
|
|
|
(! config.boot.kernelPackages.kernel.features ? aufs)
|
2010-05-28 07:09:34 +00:00
|
|
|
config.boot.kernelPackages.aufs2;
|
2009-12-15 14:05:01 +00:00
|
|
|
|
2010-01-03 16:29:17 +00:00
|
|
|
boot.initrd.availableKernelModules = [ "aufs" "squashfs" "iso9660" ];
|
2009-06-05 13:35:27 +00:00
|
|
|
|
2010-01-03 16:29:17 +00:00
|
|
|
boot.initrd.kernelModules = [ "loop" ];
|
2010-01-09 15:13:06 +00:00
|
|
|
|
|
|
|
# In stage 1, mount a tmpfs on top of / (the ISO image) and
|
|
|
|
# /nix/store (the squashfs image) to make this a live CD.
|
|
|
|
boot.initrd.postMountCommands =
|
|
|
|
''
|
|
|
|
mkdir /mnt-root-tmpfs
|
|
|
|
mount -t tmpfs -o "mode=755" none /mnt-root-tmpfs
|
|
|
|
mkdir /mnt-root-union
|
|
|
|
mount -t aufs -o dirs=/mnt-root-tmpfs=rw:$targetRoot=ro none /mnt-root-union
|
|
|
|
targetRoot=/mnt-root-union
|
|
|
|
|
|
|
|
mkdir /mnt-store-tmpfs
|
|
|
|
mount -t tmpfs -o "mode=755" none /mnt-store-tmpfs
|
|
|
|
mkdir -p $targetRoot/nix/store
|
|
|
|
mount -t aufs -o dirs=/mnt-store-tmpfs=rw:/mnt-root/nix/store=ro none /mnt-root-union/nix/store
|
|
|
|
'';
|
2009-06-05 13:35:27 +00:00
|
|
|
|
2009-06-10 16:29:48 +00:00
|
|
|
# Closures to be copied to the Nix store on the CD, namely the init
|
|
|
|
# script and the top-level system configuration directory.
|
|
|
|
isoImage.storeContents =
|
|
|
|
[ config.system.build.bootStage2
|
2009-09-04 09:29:18 +00:00
|
|
|
config.system.build.toplevel
|
2009-06-10 16:29:48 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# Create the squashfs image that contains the Nix store.
|
|
|
|
system.build.squashfsStore = import ../../../lib/make-squashfs.nix {
|
|
|
|
inherit (pkgs) stdenv squashfsTools perl pathsFromGraph;
|
|
|
|
storeContents = config.isoImage.storeContents;
|
|
|
|
};
|
|
|
|
|
2009-06-09 12:01:31 +00:00
|
|
|
# Individual files to be included on the CD, outside of the Nix
|
|
|
|
# store on the CD.
|
|
|
|
isoImage.contents =
|
2009-11-10 21:42:38 +00:00
|
|
|
[ { source = grubImage;
|
|
|
|
target = "/boot/grub/grub_eltorito";
|
2009-06-09 12:01:31 +00:00
|
|
|
}
|
2009-11-10 21:42:38 +00:00
|
|
|
{ source = pkgs.writeText "grub.cfg" grubCfg;
|
|
|
|
target = "/boot/grub/grub.cfg";
|
2009-06-09 12:01:31 +00:00
|
|
|
}
|
2010-02-18 11:35:39 +00:00
|
|
|
{ source = config.boot.kernelPackages.kernel + "/bzImage";
|
|
|
|
target = "/boot/bzImage";
|
2009-06-09 12:01:31 +00:00
|
|
|
}
|
|
|
|
{ source = config.system.build.initialRamdisk + "/initrd";
|
|
|
|
target = "/boot/initrd";
|
|
|
|
}
|
2009-11-13 16:45:41 +00:00
|
|
|
{ source = "${pkgs.grub2}/share/grub/unicode.pf2";
|
|
|
|
target = "/boot/grub/unicode.pf2";
|
|
|
|
}
|
|
|
|
{ source = config.boot.loader.grub.splashImage;
|
|
|
|
target = "/boot/grub/splash.png";
|
2009-06-09 12:01:31 +00:00
|
|
|
}
|
2009-06-10 16:29:48 +00:00
|
|
|
{ source = config.system.build.squashfsStore;
|
|
|
|
target = "/nix-store.squashfs";
|
2009-06-09 13:27:50 +00:00
|
|
|
}
|
2009-06-10 16:29:48 +00:00
|
|
|
{ # Quick hack: need a mount point for the store.
|
|
|
|
source = pkgs.runCommand "empty" {} "ensureDir $out";
|
|
|
|
target = "/nix/store";
|
2009-06-09 13:27:50 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2009-06-09 12:01:31 +00:00
|
|
|
# The Grub menu.
|
2009-11-13 16:45:41 +00:00
|
|
|
boot.loader.grub.extraEntries =
|
2009-06-09 12:01:31 +00:00
|
|
|
''
|
2009-11-10 21:42:38 +00:00
|
|
|
menuentry "NixOS Installer / Rescue" {
|
2010-02-18 11:35:39 +00:00
|
|
|
linux /boot/bzImage init=${config.system.build.bootStage2} systemConfig=${config.system.build.toplevel} ${toString config.boot.kernelParams}
|
2009-06-09 12:01:31 +00:00
|
|
|
initrd /boot/initrd
|
2009-11-10 21:42:38 +00:00
|
|
|
}
|
2010-01-06 12:24:20 +00:00
|
|
|
|
|
|
|
menuentry "Boot from hard disk" {
|
|
|
|
set root=(hd0)
|
|
|
|
chainloader +1
|
|
|
|
}
|
2009-06-09 12:01:31 +00:00
|
|
|
'';
|
2010-01-06 14:37:23 +00:00
|
|
|
|
2009-12-11 00:51:07 +00:00
|
|
|
boot.loader.grub.timeout = 10;
|
2009-06-09 12:01:31 +00:00
|
|
|
|
2009-06-05 13:35:27 +00:00
|
|
|
# Create the ISO image.
|
|
|
|
system.build.isoImage = import ../../../lib/make-iso9660-image.nix {
|
|
|
|
inherit (pkgs) stdenv perl cdrkit pathsFromGraph;
|
2009-06-09 15:23:03 +00:00
|
|
|
|
2009-06-10 16:29:48 +00:00
|
|
|
inherit (config.isoImage) isoName compressImage volumeID contents;
|
2009-06-05 13:35:27 +00:00
|
|
|
|
|
|
|
bootable = true;
|
2009-11-10 21:42:38 +00:00
|
|
|
bootImage = "/boot/grub/grub_eltorito";
|
2009-06-05 13:35:27 +00:00
|
|
|
};
|
2009-06-05 16:02:58 +00:00
|
|
|
|
|
|
|
boot.postBootCommands =
|
|
|
|
''
|
2009-06-10 16:29:48 +00:00
|
|
|
# After booting, register the contents of the Nix store on the
|
|
|
|
# CD in the Nix database in the tmpfs.
|
|
|
|
${config.environment.nix}/bin/nix-store --load-db < /nix/store/nix-path-registration
|
2009-06-10 12:51:16 +00:00
|
|
|
|
|
|
|
# nixos-rebuild also requires a "system" profile and an
|
|
|
|
# /etc/NIXOS tag.
|
|
|
|
touch /etc/NIXOS
|
|
|
|
${config.environment.nix}/bin/nix-env -p /nix/var/nix/profiles/system --set /var/run/current-system
|
2009-06-05 16:02:58 +00:00
|
|
|
'';
|
2009-06-05 13:35:27 +00:00
|
|
|
}
|