2010-05-08 19:18:26 +02:00
|
|
|
{pkgs, config, modules, baseModules, ...}:
|
2009-05-27 11:00:45 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2009-05-28 15:36:38 +02:00
|
|
|
options = {
|
|
|
|
|
|
|
|
system.build = pkgs.lib.mkOption {
|
|
|
|
default = {};
|
|
|
|
description = ''
|
|
|
|
Attribute set of derivations used to setup the system.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
nesting.children = pkgs.lib.mkOption {
|
|
|
|
default = [];
|
|
|
|
description = ''
|
|
|
|
Additional configurations to build.
|
|
|
|
'';
|
|
|
|
};
|
Making modular my previous changes for armv5tel. I updated the way to use
grub. Its options are no more inside 'boot', but inside 'boot.loader.grub'.
I added a new bootloader configuration for nixos, generationsDir. It creates
/boot/default/{init,initrd,kernel,system} symlinks, and the same for the generations
in /boot/system-$gen/{init,initrd,kernel,system}.
I can program the u-boot loader to load /boot/default files always, and have
a minimal nixos boot loader installer functionality. Additionally, I can refer
to the other system generations easily, with a simple 'ls' in /boot.
svn path=/nixos/trunk/; revision=17460
2009-09-27 23:51:37 +02:00
|
|
|
|
2010-05-08 19:18:26 +02:00
|
|
|
nesting.clone = pkgs.lib.mkOption {
|
|
|
|
default = [];
|
|
|
|
description = ''
|
|
|
|
Additional configurations to build based on the current
|
|
|
|
configuration which is has a lower priority.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
Making modular my previous changes for armv5tel. I updated the way to use
grub. Its options are no more inside 'boot', but inside 'boot.loader.grub'.
I added a new bootloader configuration for nixos, generationsDir. It creates
/boot/default/{init,initrd,kernel,system} symlinks, and the same for the generations
in /boot/system-$gen/{init,initrd,kernel,system}.
I can program the u-boot loader to load /boot/default files always, and have
a minimal nixos boot loader installer functionality. Additionally, I can refer
to the other system generations easily, with a simple 'ls' in /boot.
svn path=/nixos/trunk/; revision=17460
2009-09-27 23:51:37 +02:00
|
|
|
system.boot.loader.id = pkgs.lib.mkOption {
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Id string of the used bootloader.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
system.boot.loader.kernelFile = pkgs.lib.mkOption {
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Name of the kernel file to be passed to the bootloader.
|
|
|
|
'';
|
|
|
|
};
|
2010-04-28 16:55:26 +02:00
|
|
|
|
|
|
|
system.copySystemConfiguration = pkgs.lib.mkOption {
|
2010-04-30 09:43:29 +02:00
|
|
|
default = false;
|
2010-04-28 16:55:26 +02:00
|
|
|
description = ''
|
2010-09-13 00:43:45 +02:00
|
|
|
If enabled, copies the NixOS configuration file
|
|
|
|
<literal>$NIXOS_CONFIG</literal> (usually
|
|
|
|
<filename>/etc/nixos/configuration.nix</filename>)
|
2010-04-28 16:55:26 +02:00
|
|
|
to the system store path.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
system.extraSystemBuilderCmds = pkgs.lib.mkOption {
|
|
|
|
default = "";
|
2010-09-13 00:43:45 +02:00
|
|
|
internal = true;
|
2010-04-28 16:55:26 +02:00
|
|
|
merge = pkgs.lib.concatStringsSep "\n";
|
|
|
|
description = ''
|
|
|
|
This code will be added to the builder creating the system store path.
|
|
|
|
'';
|
|
|
|
};
|
2009-05-28 15:36:38 +02:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-05-27 11:00:45 +02:00
|
|
|
# This attribute is responsible for creating boot entries for
|
|
|
|
# child configuration. They are only (directly) accessible
|
|
|
|
# when the parent configuration is boot default. For example,
|
|
|
|
# you can provide an easy way to boot the same configuration
|
|
|
|
# as you use, but with another kernel
|
|
|
|
# !!! fix this
|
2010-05-08 19:18:26 +02:00
|
|
|
cloner = inheritParent: list: with pkgs.lib;
|
2009-10-30 12:57:23 +01:00
|
|
|
map (childConfig:
|
2009-12-05 20:21:57 +01:00
|
|
|
(import ../../../lib/eval-config.nix {
|
2010-05-08 19:18:26 +02:00
|
|
|
inherit baseModules;
|
|
|
|
modules =
|
|
|
|
(optionals inheritParent modules)
|
|
|
|
++ [ ./no-clone.nix ]
|
|
|
|
++ [ childConfig ];
|
2009-12-05 20:21:57 +01:00
|
|
|
}).config.system.build.toplevel
|
2010-05-08 19:18:26 +02:00
|
|
|
) list;
|
|
|
|
|
|
|
|
children =
|
|
|
|
cloner false config.nesting.children
|
|
|
|
++ cloner true config.nesting.clone;
|
2009-05-27 11:00:45 +02:00
|
|
|
|
|
|
|
|
2009-09-29 11:50:38 +02:00
|
|
|
systemBuilder =
|
|
|
|
let
|
Making modular my previous changes for armv5tel. I updated the way to use
grub. Its options are no more inside 'boot', but inside 'boot.loader.grub'.
I added a new bootloader configuration for nixos, generationsDir. It creates
/boot/default/{init,initrd,kernel,system} symlinks, and the same for the generations
in /boot/system-$gen/{init,initrd,kernel,system}.
I can program the u-boot loader to load /boot/default files always, and have
a minimal nixos boot loader installer functionality. Additionally, I can refer
to the other system generations easily, with a simple 'ls' in /boot.
svn path=/nixos/trunk/; revision=17460
2009-09-27 23:51:37 +02:00
|
|
|
kernelPath = "${config.boot.kernelPackages.kernel}/" +
|
|
|
|
"${config.system.boot.loader.kernelFile}";
|
2010-08-24 15:27:28 +02:00
|
|
|
in ''
|
2009-05-27 11:00:45 +02:00
|
|
|
ensureDir $out
|
|
|
|
|
Making modular my previous changes for armv5tel. I updated the way to use
grub. Its options are no more inside 'boot', but inside 'boot.loader.grub'.
I added a new bootloader configuration for nixos, generationsDir. It creates
/boot/default/{init,initrd,kernel,system} symlinks, and the same for the generations
in /boot/system-$gen/{init,initrd,kernel,system}.
I can program the u-boot loader to load /boot/default files always, and have
a minimal nixos boot loader installer functionality. Additionally, I can refer
to the other system generations easily, with a simple 'ls' in /boot.
svn path=/nixos/trunk/; revision=17460
2009-09-27 23:51:37 +02:00
|
|
|
if [ ! -f ${kernelPath} ]; then
|
|
|
|
echo "The bootloader cannot find the proper kernel image."
|
|
|
|
echo "(Expecting ${kernelPath})"
|
2009-11-08 19:32:21 +01:00
|
|
|
false
|
Making modular my previous changes for armv5tel. I updated the way to use
grub. Its options are no more inside 'boot', but inside 'boot.loader.grub'.
I added a new bootloader configuration for nixos, generationsDir. It creates
/boot/default/{init,initrd,kernel,system} symlinks, and the same for the generations
in /boot/system-$gen/{init,initrd,kernel,system}.
I can program the u-boot loader to load /boot/default files always, and have
a minimal nixos boot loader installer functionality. Additionally, I can refer
to the other system generations easily, with a simple 'ls' in /boot.
svn path=/nixos/trunk/; revision=17460
2009-09-27 23:51:37 +02:00
|
|
|
fi
|
2010-09-13 00:43:45 +02:00
|
|
|
|
Making modular my previous changes for armv5tel. I updated the way to use
grub. Its options are no more inside 'boot', but inside 'boot.loader.grub'.
I added a new bootloader configuration for nixos, generationsDir. It creates
/boot/default/{init,initrd,kernel,system} symlinks, and the same for the generations
in /boot/system-$gen/{init,initrd,kernel,system}.
I can program the u-boot loader to load /boot/default files always, and have
a minimal nixos boot loader installer functionality. Additionally, I can refer
to the other system generations easily, with a simple 'ls' in /boot.
svn path=/nixos/trunk/; revision=17460
2009-09-27 23:51:37 +02:00
|
|
|
ln -s ${kernelPath} $out/kernel
|
2010-01-26 22:45:13 +01:00
|
|
|
ln -s ${config.system.modulesTree} $out/kernel-modules
|
2009-09-23 22:51:00 +02:00
|
|
|
if [ -n "$grub" ]; then
|
|
|
|
ln -s $grub $out/grub
|
|
|
|
fi
|
2010-09-13 20:19:15 +02:00
|
|
|
|
2009-05-27 11:00:45 +02:00
|
|
|
ln -s ${config.system.build.initialRamdisk}/initrd $out/initrd
|
2010-09-13 20:19:15 +02:00
|
|
|
|
|
|
|
echo "$activationScript" > $out/activate
|
|
|
|
substituteInPlace $out/activate --subst-var out
|
|
|
|
chmod u+x $out/activate
|
|
|
|
unset activationScript
|
2010-09-14 00:10:25 +02:00
|
|
|
|
|
|
|
cp ${config.system.build.bootStage2} $out/init
|
|
|
|
substituteInPlace $out/init --subst-var-by systemConfig $out
|
2010-09-13 20:19:15 +02:00
|
|
|
|
2009-05-27 11:00:45 +02:00
|
|
|
ln -s ${config.system.build.etc}/etc $out/etc
|
|
|
|
ln -s ${config.system.path} $out/sw
|
2009-11-06 10:36:35 +01:00
|
|
|
ln -s ${config.system.build.upstart} $out/upstart
|
2010-04-25 20:26:56 +02:00
|
|
|
ln -s ${config.hardware.firmware} $out/firmware
|
2009-05-27 11:00:45 +02:00
|
|
|
|
|
|
|
echo "$kernelParams" > $out/kernel-params
|
|
|
|
echo "$configurationName" > $out/configuration-name
|
2009-11-06 10:36:35 +01:00
|
|
|
echo "${toString config.system.build.upstart.interfaceVersion}" > $out/upstart-interface-version
|
2009-05-27 11:00:45 +02:00
|
|
|
|
|
|
|
mkdir $out/fine-tune
|
|
|
|
childCount=0;
|
2010-09-13 20:19:15 +02:00
|
|
|
for i in $children; do
|
2009-05-27 11:00:45 +02:00
|
|
|
childCount=$(( childCount + 1 ));
|
|
|
|
ln -s $i $out/fine-tune/child-$childCount;
|
|
|
|
done
|
|
|
|
|
|
|
|
ensureDir $out/bin
|
|
|
|
substituteAll ${./switch-to-configuration.sh} $out/bin/switch-to-configuration
|
|
|
|
chmod +x $out/bin/switch-to-configuration
|
2010-04-28 16:55:26 +02:00
|
|
|
|
|
|
|
${config.system.extraSystemBuilderCmds}
|
2009-05-27 11:00:45 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
|
|
# Putting it all together. This builds a store path containing
|
|
|
|
# symlinks to the various parts of the built configuration (the
|
|
|
|
# kernel, the Upstart services, the init scripts, etc.) as well as a
|
|
|
|
# script `switch-to-configuration' that activates the configuration
|
|
|
|
# and makes it bootable.
|
|
|
|
system = pkgs.stdenv.mkDerivation {
|
|
|
|
name = "system";
|
|
|
|
buildCommand = systemBuilder;
|
|
|
|
inherit children;
|
|
|
|
kernelParams =
|
|
|
|
config.boot.kernelParams ++ config.boot.extraKernelParams;
|
Making modular my previous changes for armv5tel. I updated the way to use
grub. Its options are no more inside 'boot', but inside 'boot.loader.grub'.
I added a new bootloader configuration for nixos, generationsDir. It creates
/boot/default/{init,initrd,kernel,system} symlinks, and the same for the generations
in /boot/system-$gen/{init,initrd,kernel,system}.
I can program the u-boot loader to load /boot/default files always, and have
a minimal nixos boot loader installer functionality. Additionally, I can refer
to the other system generations easily, with a simple 'ls' in /boot.
svn path=/nixos/trunk/; revision=17460
2009-09-27 23:51:37 +02:00
|
|
|
menuBuilder = config.system.build.menuBuilder;
|
2009-12-17 07:04:36 +01:00
|
|
|
initScriptBuilder = config.system.build.initScriptBuilder;
|
2010-09-13 20:19:15 +02:00
|
|
|
activationScript = config.system.activationScripts.script;
|
2009-05-27 11:00:45 +02:00
|
|
|
# Most of these are needed by grub-install.
|
|
|
|
path = [
|
|
|
|
pkgs.coreutils
|
|
|
|
pkgs.gnused
|
|
|
|
pkgs.gnugrep
|
|
|
|
pkgs.findutils
|
|
|
|
pkgs.diffutils
|
2009-11-06 10:36:35 +01:00
|
|
|
config.system.build.upstart # for initctl
|
2009-05-27 11:00:45 +02:00
|
|
|
];
|
Making modular my previous changes for armv5tel. I updated the way to use
grub. Its options are no more inside 'boot', but inside 'boot.loader.grub'.
I added a new bootloader configuration for nixos, generationsDir. It creates
/boot/default/{init,initrd,kernel,system} symlinks, and the same for the generations
in /boot/system-$gen/{init,initrd,kernel,system}.
I can program the u-boot loader to load /boot/default files always, and have
a minimal nixos boot loader installer functionality. Additionally, I can refer
to the other system generations easily, with a simple 'ls' in /boot.
svn path=/nixos/trunk/; revision=17460
2009-09-27 23:51:37 +02:00
|
|
|
|
|
|
|
# Boot loaders
|
|
|
|
bootLoader = config.system.boot.loader.id;
|
2009-10-13 23:39:18 +02:00
|
|
|
grub =
|
|
|
|
if config.boot.loader.grub.enable
|
2009-12-16 19:11:26 +01:00
|
|
|
then config.system.build.grub
|
2009-10-13 23:39:18 +02:00
|
|
|
else null;
|
2009-12-16 19:11:26 +01:00
|
|
|
grubVersion =
|
|
|
|
if config.boot.loader.grub.enable
|
|
|
|
then (builtins.parseDrvName config.system.build.grub.name).version
|
|
|
|
else "";
|
2009-09-29 11:50:38 +02:00
|
|
|
grubDevice = config.boot.loader.grub.device;
|
Making modular my previous changes for armv5tel. I updated the way to use
grub. Its options are no more inside 'boot', but inside 'boot.loader.grub'.
I added a new bootloader configuration for nixos, generationsDir. It creates
/boot/default/{init,initrd,kernel,system} symlinks, and the same for the generations
in /boot/system-$gen/{init,initrd,kernel,system}.
I can program the u-boot loader to load /boot/default files always, and have
a minimal nixos boot loader installer functionality. Additionally, I can refer
to the other system generations easily, with a simple 'ls' in /boot.
svn path=/nixos/trunk/; revision=17460
2009-09-27 23:51:37 +02:00
|
|
|
configurationName = config.boot.loader.grub.configurationName;
|
2009-05-27 11:00:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
in {
|
2009-05-28 15:36:38 +02:00
|
|
|
require = [options];
|
2009-05-27 11:00:45 +02:00
|
|
|
|
2010-04-28 16:55:26 +02:00
|
|
|
system.extraSystemBuilderCmds =
|
2010-09-13 00:43:45 +02:00
|
|
|
pkgs.lib.optionalString
|
|
|
|
config.system.copySystemConfiguration
|
|
|
|
"cp ${pkgs.lib.maybeEnv "NIXOS_CONFIG" "/etc/nixos/configuration.nix"} $out";
|
|
|
|
|
2009-09-04 11:29:18 +02:00
|
|
|
system.build.toplevel = system;
|
2009-05-27 11:00:45 +02:00
|
|
|
}
|