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.
|
|
|
|
|
|
|
|
{config, pkgs, ...}:
|
|
|
|
|
|
|
|
let
|
2009-06-09 12:01:31 +00:00
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
isoImage.contents = pkgs.lib.mkOption {
|
|
|
|
example =
|
|
|
|
[ { source = pkgs.memtest86 + "/memtest.bin";
|
|
|
|
target = "boot/memtest.bin";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
description = ''
|
|
|
|
This option lists files that have to be copied to fixed
|
|
|
|
locations in the generated ISO image.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2009-06-05 13:35:27 +00:00
|
|
|
|
|
|
|
cdLabel = "NIXOS_INSTALLATION_CD";
|
|
|
|
|
|
|
|
# The configuration file for Grub.
|
|
|
|
grubCfg =
|
|
|
|
''
|
|
|
|
default 0
|
|
|
|
timeout 10
|
|
|
|
splashimage /boot/background.xpm.gz
|
|
|
|
|
2009-06-09 12:01:31 +00:00
|
|
|
${config.boot.extraGrubEntries}
|
2009-06-05 13:35:27 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2009-06-09 12:01:31 +00:00
|
|
|
require = options;
|
|
|
|
|
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 = "/";
|
|
|
|
label = cdLabel;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
# We need AUFS in the initrd to make the CD appear writable.
|
|
|
|
boot.extraModulePackages = [config.boot.kernelPackages.aufs];
|
|
|
|
boot.initrd.extraKernelModules = ["aufs"];
|
|
|
|
|
|
|
|
# Tell stage 1 of the boot to mount a tmpfs on top of the CD using
|
|
|
|
# AUFS. !!! It would be nicer to make the stage 1 init pluggable
|
|
|
|
# and move that bit of code here.
|
|
|
|
boot.isLiveCD = true;
|
|
|
|
|
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 =
|
|
|
|
[ { source = "${pkgs.grub}/lib/grub/${if pkgs.stdenv.system == "i686-linux" then "i386-pc" else "x86_64-unknown"}/stage2_eltorito";
|
|
|
|
target = "/boot/grub/stage2_eltorito";
|
|
|
|
}
|
|
|
|
{ source = pkgs.writeText "menu.lst" grubCfg;
|
|
|
|
target = "/boot/grub/menu.lst";
|
|
|
|
}
|
|
|
|
{ source = config.boot.kernelPackages.kernel + "/vmlinuz";
|
|
|
|
target = "/boot/vmlinuz";
|
|
|
|
}
|
|
|
|
{ source = config.system.build.initialRamdisk + "/initrd";
|
|
|
|
target = "/boot/initrd";
|
|
|
|
}
|
|
|
|
{ source = config.boot.grubSplashImage;
|
|
|
|
target = "/boot/background.xpm.gz";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
# The Grub menu.
|
|
|
|
boot.extraGrubEntries =
|
|
|
|
''
|
|
|
|
title Boot from hard disk
|
|
|
|
root (hd0)
|
|
|
|
chainloader +1
|
|
|
|
|
|
|
|
title NixOS Installer / Rescue
|
|
|
|
kernel /boot/vmlinuz init=/init ${toString config.boot.kernelParams}
|
|
|
|
initrd /boot/initrd
|
|
|
|
'';
|
|
|
|
|
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;
|
|
|
|
#isoName = "${relName}-${platform}.iso";
|
|
|
|
|
|
|
|
bootable = true;
|
2009-06-09 12:01:31 +00:00
|
|
|
bootImage = "/boot/grub/stage2_eltorito";
|
2009-06-05 13:35:27 +00:00
|
|
|
|
|
|
|
#compressImage = ...;
|
|
|
|
|
|
|
|
volumeID = cdLabel;
|
|
|
|
|
|
|
|
# Single files to be copied to fixed locations on the CD.
|
2009-06-09 12:01:31 +00:00
|
|
|
contents = config.isoImage.contents;
|
2009-06-05 13:35:27 +00:00
|
|
|
|
|
|
|
# Closures to be copied to the Nix store on the CD.
|
|
|
|
storeContents =
|
|
|
|
[ { object = config.system.build.bootStage2;
|
|
|
|
symlink = "/init";
|
|
|
|
}
|
|
|
|
{ object = config.system.build.system;
|
|
|
|
symlink = "/system";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2009-06-05 16:02:58 +00:00
|
|
|
|
|
|
|
# After booting, register the contents of the Nix store on the CD in
|
|
|
|
# the Nix database in the tmpfs.
|
|
|
|
boot.postBootCommands =
|
|
|
|
''
|
|
|
|
${config.environment.nix}/bin/nix-store --load-db < /nix-path-registration
|
|
|
|
rm /nix-path-registration
|
|
|
|
'';
|
2009-06-05 13:35:27 +00:00
|
|
|
}
|