2006-11-02 22:48:01 +00:00
|
|
|
#! @shell@
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
# 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-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-02 23:58:06 +00:00
|
|
|
# Create device nodes in /dev.
|
|
|
|
source @makeDevices@
|
|
|
|
|
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
|
|
|
|
|
|
|
|
# Mount the installation CD.
|
|
|
|
mkdir /mnt
|
|
|
|
mkdir /mnt/cdrom
|
|
|
|
mount -o ro /dev/hdc /mnt/cdrom
|
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.
|
|
|
|
cd /mnt/cdrom
|
|
|
|
mount --move . /
|
|
|
|
umount /proc # cleanup
|
|
|
|
umount /sys
|
|
|
|
exec chroot . /init
|
2006-11-04 00:01:13 +00:00
|
|
|
|
|
|
|
# If starting stage 2 failed, start an interactive shell.
|
|
|
|
echo "Stage 2 failed, starting emergency shell..."
|
2006-11-02 22:48:01 +00:00
|
|
|
exec @shell@
|