2006-11-02 23:48:01 +01:00
|
|
|
#! @shell@
|
|
|
|
|
|
|
|
# Print a greeting.
|
2006-11-02 23:50:30 +01:00
|
|
|
echo
|
|
|
|
echo "<<< NixOS Stage 1 >>>"
|
|
|
|
echo
|
2006-11-02 23:48:01 +01:00
|
|
|
|
|
|
|
# Set the PATH.
|
|
|
|
export PATH=/empty
|
|
|
|
for i in @path@; do
|
|
|
|
PATH=$PATH:$i/bin
|
|
|
|
done
|
|
|
|
|
2006-11-03 00:58:06 +01:00
|
|
|
# Create device nodes in /dev.
|
|
|
|
source @makeDevices@
|
|
|
|
|
2006-11-02 23:48:01 +01:00
|
|
|
# Start an interactive shell.
|
|
|
|
exec @shell@
|