1cec62ba5d
at the end of stage 2. * Stage 2: set MODULE_DIR to point at a full module tree. svn path=/nixu/trunk/; revision=6954
43 lines
825 B
Bash
43 lines
825 B
Bash
#! @shell@
|
|
|
|
# !!! copied from stage 1; remove duplication
|
|
|
|
# Print a greeting.
|
|
echo
|
|
echo "<<< NixOS Stage 2 >>>"
|
|
echo
|
|
|
|
# Set the PATH.
|
|
export PATH=/empty
|
|
for i in @path@; do
|
|
PATH=$PATH:$i/bin
|
|
if test -e $i/sbin; then
|
|
PATH=$PATH:$i/sbin
|
|
fi
|
|
done
|
|
|
|
# Mount special file systems.
|
|
mount -t tmpfs none /etc -n # to shut up mount
|
|
touch /etc/fstab # idem
|
|
mount -t proc none /proc
|
|
mount -t sysfs none /sys
|
|
mount -t tmpfs none /dev
|
|
mount -t tmpfs none /tmp
|
|
|
|
# Create device nodes in /dev.
|
|
source @makeDevices@
|
|
|
|
# Ensure that the module tools can find the kernel modules.
|
|
export MODULE_DIR=@kernel@/lib/modules/
|
|
|
|
# Additional path for the interactive shell.
|
|
for i in @extraPath@; do
|
|
PATH=$PATH:$i/bin
|
|
if test -e $i/sbin; then
|
|
PATH=$PATH:$i/sbin
|
|
fi
|
|
done
|
|
|
|
# Start an interactive shell.
|
|
exec @shell@
|