49f8402876
* Stage 2 init: handle non-read-only roots. svn path=/nixu/trunk/; revision=7014
31 lines
659 B
Bash
31 lines
659 B
Bash
source $stdenv/setup
|
|
|
|
ensureDir $out
|
|
|
|
ln -s $kernel $out/kernel
|
|
ln -s $grub $out/grub
|
|
|
|
cat > $out/menu.lst << GRUBEND
|
|
# Automatically generated. DO NOT EDIT THIS FILE!
|
|
default=0
|
|
timeout=5
|
|
title NixOS
|
|
kernel $kernel selinux=0 apm=on acpi=on
|
|
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
|
|
if test -n "$grubDevice"; then
|
|
$grub/sbin/grub-install "$grubDevice" --no-floppy --recheck
|
|
cp -f $out/menu.lst /boot/grub/menu.lst
|
|
ln -sf $bootStage2 /init # !!! fix?
|
|
fi
|
|
EOF
|
|
|
|
chmod +x $out/bin/switch-to-configuration
|