2006-11-04 01:01:13 +01:00
|
|
|
#! @shell@
|
|
|
|
|
|
|
|
# !!! copied from stage 1; remove duplication
|
|
|
|
|
2006-11-13 12:41:27 +01:00
|
|
|
|
2006-11-04 01:01:13 +01:00
|
|
|
# Print a greeting.
|
|
|
|
echo
|
|
|
|
echo "<<< NixOS Stage 2 >>>"
|
|
|
|
echo
|
|
|
|
|
2006-11-13 12:41:27 +01:00
|
|
|
|
2006-11-04 01:01:13 +01:00
|
|
|
# Set the PATH.
|
|
|
|
export PATH=/empty
|
2006-11-28 17:47:14 +01:00
|
|
|
for i in @startPath@; do
|
2006-11-04 01:01:13 +01:00
|
|
|
PATH=$PATH:$i/bin
|
|
|
|
if test -e $i/sbin; then
|
|
|
|
PATH=$PATH:$i/sbin
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2006-11-13 12:41:27 +01:00
|
|
|
|
2006-11-24 01:18:14 +01:00
|
|
|
# Mount special file systems.
|
2006-11-13 12:41:27 +01:00
|
|
|
|
|
|
|
needWritableDir() {
|
|
|
|
if test -n "@readOnlyRoot@"; then
|
2006-11-23 18:32:09 +01:00
|
|
|
mount -t tmpfs -o "mode=$2" none $1 $3
|
2006-11-13 12:41:27 +01:00
|
|
|
else
|
|
|
|
mkdir -m $2 -p $1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
needWritableDir /etc 0755 -n # to shut up mount
|
|
|
|
|
|
|
|
test -e /etc/fstab || touch /etc/fstab # idem
|
|
|
|
|
2006-11-23 18:46:55 +01:00
|
|
|
mount -n -t proc none /proc
|
2006-11-23 23:58:25 +01:00
|
|
|
cat /proc/mounts > /etc/mtab
|
2006-11-24 01:18:14 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Process the kernel command line.
|
|
|
|
for o in $(cat /proc/cmdline); do
|
|
|
|
case $o in
|
|
|
|
debugtrace)
|
|
|
|
# Show each command.
|
|
|
|
set -x
|
|
|
|
;;
|
|
|
|
debug2)
|
2006-11-24 01:24:08 +01:00
|
|
|
echo "Debug shell called from @out@"
|
2006-11-24 01:18:14 +01:00
|
|
|
exec @shell@
|
|
|
|
;;
|
|
|
|
S|s|single)
|
|
|
|
# !!! argh, can't pass a startup event to Upstart yet.
|
|
|
|
exec @shell@
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
# More special file systems, initialise required directories.
|
2006-11-04 01:18:22 +01:00
|
|
|
mount -t sysfs none /sys
|
2006-11-23 18:32:09 +01:00
|
|
|
mount -t tmpfs -o "mode=0755" none /dev
|
2006-11-13 12:41:27 +01:00
|
|
|
needWritableDir /tmp 01777
|
|
|
|
needWritableDir /var 0755
|
|
|
|
needWritableDir /nix/var 0755
|
|
|
|
|
|
|
|
mkdir -m 0755 -p /nix/var/nix/db
|
|
|
|
mkdir -m 0755 -p /nix/var/nix/gcroots
|
|
|
|
mkdir -m 0755 -p /nix/var/nix/temproots
|
2006-11-06 23:21:50 +01:00
|
|
|
|
2006-11-19 19:16:29 +01:00
|
|
|
mkdir -m 0755 -p /var/log
|
|
|
|
|
2006-11-23 17:46:23 +01:00
|
|
|
ln -sf /nix/var/nix/profiles /nix/var/nix/gcroots/
|
|
|
|
|
2006-11-04 01:01:13 +01:00
|
|
|
|
2006-12-09 20:25:23 +01:00
|
|
|
# Run the script that performs all configuration activation that does
|
|
|
|
# not have to be done at boot time.
|
|
|
|
source @activateConfiguration@
|
2006-12-09 03:51:42 +01:00
|
|
|
|
|
|
|
|
2006-11-04 14:25:10 +01:00
|
|
|
# Ensure that the module tools can find the kernel modules.
|
|
|
|
export MODULE_DIR=@kernel@/lib/modules/
|
|
|
|
|
2006-11-07 23:05:27 +01:00
|
|
|
|
2006-11-24 11:50:49 +01:00
|
|
|
# Miscellaneous cleanup.
|
2006-11-24 16:31:20 +01:00
|
|
|
rm -rf /var/run
|
|
|
|
mkdir -m 0755 -p /var/run
|
2006-11-24 11:50:49 +01:00
|
|
|
|
|
|
|
echo -n > /var/run/utmp # must exist
|
|
|
|
chmod 664 /var/run/utmp
|
|
|
|
|
|
|
|
|
2006-11-07 23:05:27 +01:00
|
|
|
# Start udev.
|
|
|
|
udevd --daemon
|
|
|
|
|
2006-11-13 12:41:27 +01:00
|
|
|
|
2006-11-07 23:05:27 +01:00
|
|
|
# Let udev create device nodes for all modules that have already been
|
|
|
|
# loaded into the kernel (or for which support is built into the
|
|
|
|
# kernel).
|
|
|
|
udevtrigger
|
|
|
|
udevsettle # wait for udev to finish
|
2006-11-04 14:25:10 +01:00
|
|
|
|
2006-11-13 12:41:27 +01:00
|
|
|
|
2006-11-04 01:01:13 +01:00
|
|
|
# Start an interactive shell.
|
2006-11-19 21:07:45 +01:00
|
|
|
#exec @shell@
|
2006-11-06 23:21:50 +01:00
|
|
|
|
2006-11-13 12:41:27 +01:00
|
|
|
|
2006-11-19 19:16:29 +01:00
|
|
|
# Start Upstart's init.
|
2006-12-09 20:25:23 +01:00
|
|
|
export UPSTART_CFG_DIR=/etc/event.d
|
2006-11-19 19:16:29 +01:00
|
|
|
exec @upstart@/sbin/init -v
|