2006-11-04 03:01:13 +03:00
|
|
|
#! @shell@
|
|
|
|
|
|
|
|
# !!! copied from stage 1; remove duplication
|
|
|
|
|
2006-11-13 14:41:27 +03:00
|
|
|
|
2006-11-04 03:01:13 +03:00
|
|
|
# Print a greeting.
|
|
|
|
echo
|
|
|
|
echo "<<< NixOS Stage 2 >>>"
|
|
|
|
echo
|
|
|
|
|
2006-11-13 14:41:27 +03:00
|
|
|
|
2006-11-04 03:01:13 +03:00
|
|
|
# Set the PATH.
|
2006-12-11 03:52:36 +03:00
|
|
|
setPath() {
|
|
|
|
local dirs="$1"
|
|
|
|
export PATH=/empty
|
|
|
|
for i in $dirs; do
|
|
|
|
PATH=$PATH:$i/bin
|
|
|
|
if test -e $i/sbin; then
|
|
|
|
PATH=$PATH:$i/sbin
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
setPath "@path@"
|
2006-11-04 03:01:13 +03:00
|
|
|
|
2006-11-13 14:41:27 +03:00
|
|
|
|
2006-11-24 03:18:14 +03:00
|
|
|
# Mount special file systems.
|
2008-01-24 19:56:09 +03:00
|
|
|
mkdir -m 0755 -p /etc
|
|
|
|
test -e /etc/fstab || touch /etc/fstab # to shut up mount
|
|
|
|
mkdir -m 0755 -p /proc
|
2006-11-23 20:46:55 +03:00
|
|
|
mount -n -t proc none /proc
|
2008-08-10 16:23:28 +04:00
|
|
|
[ -s /etc/mtab ] && rm /etc/mtab # while installing a symlink is created (see man mount), if it's still there for whateever reason remove it
|
2006-11-24 01:58:25 +03:00
|
|
|
cat /proc/mounts > /etc/mtab
|
2006-12-12 03:08:26 +03:00
|
|
|
mkdir -m 0755 -p /etc/nixos
|
|
|
|
|
2006-11-24 03:18:14 +03: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 03:24:08 +03:00
|
|
|
echo "Debug shell called from @out@"
|
2006-11-24 03:18:14 +03:00
|
|
|
exec @shell@
|
|
|
|
;;
|
|
|
|
S|s|single)
|
|
|
|
# !!! argh, can't pass a startup event to Upstart yet.
|
|
|
|
exec @shell@
|
|
|
|
;;
|
2006-12-23 02:34:42 +03:00
|
|
|
safemode)
|
|
|
|
safeMode=1
|
|
|
|
;;
|
2007-03-20 16:01:53 +03:00
|
|
|
systemConfig=*)
|
|
|
|
set -- $(IFS==; echo $o)
|
|
|
|
systemConfig=$2
|
|
|
|
;;
|
2008-03-22 19:03:43 +03:00
|
|
|
resume=*)
|
|
|
|
set -- $(IFS==; echo $o)
|
|
|
|
resumeDevice=$2
|
|
|
|
;;
|
2006-11-24 03:18:14 +03:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
# More special file systems, initialise required directories.
|
2008-01-24 19:56:09 +03:00
|
|
|
mkdir -m 0755 -p /sys
|
2006-11-04 03:18:22 +03:00
|
|
|
mount -t sysfs none /sys
|
2008-01-24 19:56:09 +03:00
|
|
|
mkdir -m 0755 -p /dev
|
2006-11-23 20:32:09 +03:00
|
|
|
mount -t tmpfs -o "mode=0755" none /dev
|
2007-01-17 01:34:15 +03:00
|
|
|
mkdir -m 0755 -p /dev/pts
|
|
|
|
mount -t devpts none /dev/pts
|
2008-08-10 16:23:28 +04:00
|
|
|
[ -e /proc/bus/usb ] && mount -t usbfs none /proc/bus/usb # uml doesn't have usb by default
|
2008-02-04 13:20:38 +03:00
|
|
|
mkdir -m 01777 -p /tmp
|
|
|
|
mkdir -m 0755 -p /var
|
|
|
|
mkdir -m 0755 -p /nix/var
|
|
|
|
mkdir -m 0700 -p /root
|
|
|
|
mkdir -m 0755 -p /bin # for the /bin/sh symlink
|
|
|
|
mkdir -m 0755 -p /home
|
2008-01-24 19:56:09 +03:00
|
|
|
|
2006-11-07 01:21:50 +03:00
|
|
|
|
2006-12-11 01:29:44 +03:00
|
|
|
# Miscellaneous boot time cleanup.
|
|
|
|
rm -rf /var/run
|
|
|
|
|
2006-12-23 02:34:42 +03:00
|
|
|
if test -n "$safeMode"; then
|
2006-12-23 03:27:39 +03:00
|
|
|
mkdir -m 0755 -p /var/run
|
2006-12-23 02:34:42 +03:00
|
|
|
touch /var/run/safemode
|
|
|
|
fi
|
|
|
|
|
2006-11-19 21:16:29 +03:00
|
|
|
|
2006-12-11 01:29:44 +03:00
|
|
|
# Create the minimal device nodes needed before we run udev.
|
|
|
|
mknod -m 0666 /dev/null c 1 3
|
2006-12-17 00:48:12 +03:00
|
|
|
mknod -m 0644 /dev/urandom c 1 9 # needed for passwd
|
2006-11-23 19:46:23 +03:00
|
|
|
|
2006-11-04 03:01:13 +03:00
|
|
|
|
2008-03-22 19:03:43 +03:00
|
|
|
# Clear the resume device.
|
|
|
|
if test -n "$resumeDevice"; then
|
|
|
|
mkswap "$resumeDevice" || echo 'Failed to clear saved image.'
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2006-12-09 22:25:23 +03:00
|
|
|
# Run the script that performs all configuration activation that does
|
|
|
|
# not have to be done at boot time.
|
2007-03-20 16:01:53 +03:00
|
|
|
@activateConfiguration@ "$systemConfig"
|
|
|
|
|
|
|
|
|
|
|
|
# Record the boot configuration. !!! Should this be a GC root?
|
|
|
|
if test -n "$systemConfig"; then
|
|
|
|
ln -sfn "$systemConfig" /var/run/booted-system
|
|
|
|
fi
|
2006-12-09 05:51:42 +03:00
|
|
|
|
|
|
|
|
2006-11-04 16:25:10 +03:00
|
|
|
# Ensure that the module tools can find the kernel modules.
|
|
|
|
export MODULE_DIR=@kernel@/lib/modules/
|
|
|
|
|
2006-11-08 01:05:27 +03:00
|
|
|
|
2007-03-06 03:45:33 +03:00
|
|
|
# Run any user-specified commands.
|
|
|
|
@shell@ @bootLocal@
|
|
|
|
|
|
|
|
|
2007-09-27 16:24:05 +04:00
|
|
|
# Start Upstart's init. We start it through the
|
|
|
|
# /var/run/current-system symlink indirection so that we can upgrade
|
|
|
|
# init in a running system by changing the symlink and sending init a
|
|
|
|
# HUP signal.
|
2006-12-09 22:25:23 +03:00
|
|
|
export UPSTART_CFG_DIR=/etc/event.d
|
2006-12-11 03:52:36 +03:00
|
|
|
setPath "@upstartPath@"
|
2008-02-08 18:59:15 +03:00
|
|
|
exec /var/run/current-system/upstart/sbin/init
|