2006-11-02 22:48:01 +00:00
|
|
|
#! @shell@
|
|
|
|
|
2006-11-10 14:38:15 +00:00
|
|
|
fail() {
|
|
|
|
# If starting stage 2 failed, start an interactive shell.
|
|
|
|
echo "Stage 2 failed, starting emergency shell..."
|
|
|
|
exec @shell@
|
|
|
|
}
|
|
|
|
|
2006-11-12 18:48:47 +00:00
|
|
|
|
2006-11-02 22:48:01 +00:00
|
|
|
# Print a greeting.
|
2006-11-02 22:50:30 +00:00
|
|
|
echo
|
|
|
|
echo "<<< NixOS Stage 1 >>>"
|
|
|
|
echo
|
2006-11-02 22:48:01 +00:00
|
|
|
|
2006-11-12 18:48:47 +00:00
|
|
|
|
2006-11-02 22:48:01 +00:00
|
|
|
# Set the PATH.
|
|
|
|
export PATH=/empty
|
|
|
|
for i in @path@; do
|
|
|
|
PATH=$PATH:$i/bin
|
2006-11-03 00:36:08 +00:00
|
|
|
if test -e $i/sbin; then
|
|
|
|
PATH=$PATH:$i/sbin
|
|
|
|
fi
|
2006-11-02 22:48:01 +00:00
|
|
|
done
|
|
|
|
|
2006-11-12 18:48:47 +00:00
|
|
|
|
2006-11-03 00:36:08 +00:00
|
|
|
# Mount special file systems.
|
|
|
|
mkdir /etc # to shut up mount
|
|
|
|
touch /etc/fstab # idem
|
|
|
|
mkdir /proc
|
2006-11-04 00:18:22 +00:00
|
|
|
mount -t proc none /proc
|
2006-11-03 00:36:08 +00:00
|
|
|
mkdir /sys
|
2006-11-04 00:18:22 +00:00
|
|
|
mount -t sysfs none /sys
|
2006-11-03 00:36:08 +00:00
|
|
|
|
2006-11-12 18:48:47 +00:00
|
|
|
|
2006-11-02 23:58:06 +00:00
|
|
|
# Create device nodes in /dev.
|
|
|
|
source @makeDevices@
|
|
|
|
|
2006-11-12 18:48:47 +00:00
|
|
|
|
2006-11-03 00:36:08 +00:00
|
|
|
# Load some kernel modules.
|
2006-11-03 11:47:40 +00:00
|
|
|
export MODULE_DIR=@modules@/lib/modules/
|
2006-11-03 09:45:06 +00:00
|
|
|
modprobe ide-generic
|
|
|
|
modprobe ide-disk
|
|
|
|
modprobe ide-cd
|
|
|
|
|
2006-11-10 14:38:15 +00:00
|
|
|
|
2006-11-12 18:48:47 +00:00
|
|
|
# Try to find and mount the root device.
|
2006-11-03 09:45:06 +00:00
|
|
|
mkdir /mnt
|
2006-11-12 18:48:47 +00:00
|
|
|
mkdir /mnt/root
|
|
|
|
|
|
|
|
echo "mounting the root device..."
|
|
|
|
|
|
|
|
if test -n "@autoDetectRootDevice@"; then
|
2006-11-10 14:38:15 +00:00
|
|
|
|
2006-11-12 18:48:47 +00:00
|
|
|
# Look for the root device by label.
|
|
|
|
echo "probing for the NixOS installation CD..."
|
2006-11-10 14:38:15 +00:00
|
|
|
|
2006-11-12 18:48:47 +00:00
|
|
|
for i in /sys/devices/*/*/media; do
|
|
|
|
if test "$(cat $i)" = "cdrom"; then
|
2006-11-10 14:38:15 +00:00
|
|
|
|
2006-11-12 18:48:47 +00:00
|
|
|
# Hopefully `drivename' matches the device created in /dev.
|
|
|
|
devName=/dev/$(cat $(dirname $i)/drivename)
|
2006-11-10 14:38:15 +00:00
|
|
|
|
2006-11-12 18:48:47 +00:00
|
|
|
echo " in $devName..."
|
2006-11-10 14:38:15 +00:00
|
|
|
|
2006-11-12 18:48:47 +00:00
|
|
|
if mount -o ro -t iso9660 $devName /mnt/root; then
|
|
|
|
if test -e "/mnt/root/@rootLabel@"; then
|
|
|
|
found=1
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
umount /mnt/root
|
2006-11-10 14:38:15 +00:00
|
|
|
fi
|
|
|
|
|
2006-11-12 18:48:47 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if test -z "$found"; then
|
|
|
|
echo "CD not found!"
|
|
|
|
fail
|
2006-11-10 14:38:15 +00:00
|
|
|
fi
|
|
|
|
|
2006-11-12 18:48:47 +00:00
|
|
|
else
|
|
|
|
|
|
|
|
# Hard-coded root device.
|
|
|
|
mount -o ro "@rootDevice@" /mnt/root
|
|
|
|
|
2006-11-10 14:38:15 +00:00
|
|
|
fi
|
2006-11-03 00:36:08 +00:00
|
|
|
|
2006-11-06 22:21:50 +00:00
|
|
|
# Start stage 2.
|
|
|
|
# !!! Note: we can't use pivot_root here (the kernel gods have
|
|
|
|
# decreed), but we could use run-init from klibc, which deletes all
|
|
|
|
# files in the initramfs, remounts the target root on /, and chroots.
|
2006-11-12 18:48:47 +00:00
|
|
|
cd /mnt/root
|
2006-11-06 22:21:50 +00:00
|
|
|
mount --move . /
|
|
|
|
umount /proc # cleanup
|
|
|
|
umount /sys
|
2006-11-13 11:41:27 +00:00
|
|
|
|
|
|
|
exec chroot . @stage2Init@
|
2006-11-04 00:01:13 +00:00
|
|
|
|
2006-11-10 14:38:15 +00:00
|
|
|
fail
|