4ac288e724
we don't stop/start/restart Upstart jobs yet. svn path=/nixos/trunk/; revision=7297
42 lines
922 B
Bash
42 lines
922 B
Bash
source $stdenv/setup
|
|
|
|
ensureDir $out
|
|
|
|
ln -s $kernel $out/kernel
|
|
ln -s $grub $out/grub
|
|
ln -s $bootStage2 $out/init
|
|
ln -s $initrd $out/initrd
|
|
ln -s $activateConfiguration $out/activate
|
|
echo "$extraKernelParams" > $out/kernel-params
|
|
|
|
cat > $out/menu.lst << GRUBEND
|
|
kernel $kernel init=$bootStage2 $extraKernelParams
|
|
initrd $initrd
|
|
GRUBEND
|
|
|
|
ensureDir $out/bin
|
|
|
|
cat > $out/bin/switch-to-configuration <<EOF
|
|
#! $SHELL
|
|
set -e
|
|
export PATH=$coreutils/bin:$gnused/bin:$gnugrep/bin:$diffutils/bin:$findutils/bin
|
|
|
|
if test -n "$grubDevice"; then
|
|
mkdir -m 0700 -p /boot/grub
|
|
$grubMenuBuilder $out
|
|
if test "\$NIXOS_INSTALL_GRUB" = 1; then
|
|
$grub/sbin/grub-install "$grubDevice" --no-floppy --recheck
|
|
fi
|
|
fi
|
|
|
|
if test "\$activateNow" = "1"; then
|
|
echo "Activating the configuration..."
|
|
$out/activate
|
|
kill -TERM 1 # make Upstart reload its events
|
|
fi
|
|
|
|
sync
|
|
EOF
|
|
|
|
chmod +x $out/bin/switch-to-configuration
|