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-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-19 21:07:45 +01:00
|
|
|
# Necessary configuration for syslogd.
|
2006-11-06 23:21:50 +01:00
|
|
|
echo "*.* /dev/tty10" > /etc/syslog.conf
|
|
|
|
echo "syslog 514/udp" > /etc/services # required, even if we don't use it
|
|
|
|
|
2006-11-13 12:41:27 +01:00
|
|
|
|
2006-11-06 23:21:50 +01:00
|
|
|
# login/su absolutely need this.
|
2006-11-13 12:41:27 +01:00
|
|
|
test -e /etc/login.defs || touch /etc/login.defs
|
|
|
|
|
2006-11-06 23:21:50 +01:00
|
|
|
|
|
|
|
# Enable a password-less root login.
|
2006-11-30 00:41:21 +01:00
|
|
|
source @accounts@
|
|
|
|
|
2006-11-13 12:41:27 +01:00
|
|
|
if ! test -e /etc/passwd; then
|
2006-11-30 00:41:21 +01:00
|
|
|
if test -n "@readOnlyRoot@"; then
|
|
|
|
rootHome=/
|
|
|
|
else
|
|
|
|
rootHome=/home/root
|
|
|
|
mkdir -p $rootHome
|
|
|
|
fi
|
|
|
|
createUser root '' 0 0 'System administrator' $rootHome/var/empty @shell@
|
2006-11-13 12:41:27 +01:00
|
|
|
fi
|
2006-11-30 00:41:21 +01:00
|
|
|
|
2006-11-13 12:41:27 +01:00
|
|
|
if ! test -e /etc/group; then
|
|
|
|
echo "root:*:0" > /etc/group
|
|
|
|
fi
|
|
|
|
|
2006-11-06 23:21:50 +01:00
|
|
|
|
2006-11-23 23:16:59 +01:00
|
|
|
# We need "localhost" (!!! destructive hack for NIXOS-41).
|
2006-11-23 23:52:15 +01:00
|
|
|
echo "127.0.0.1 localhost" > /etc/hosts
|
2006-11-23 23:16:59 +01:00
|
|
|
echo "hosts: files dns" > /etc/nsswitch.conf
|
|
|
|
|
|
|
|
|
2006-11-30 00:41:21 +01:00
|
|
|
# Set up Nix accounts.
|
|
|
|
if test -z "@readOnlyRoot@"; then
|
|
|
|
|
|
|
|
for i in $(seq 1 10); do
|
|
|
|
account=nix-build-$i
|
|
|
|
if ! userExists $account; then
|
|
|
|
createUser $account x \
|
|
|
|
$((i + 30000)) $((i + 30000)) \
|
|
|
|
'Nix build user' /var/empty /noshell
|
|
|
|
fi
|
|
|
|
accounts="$accounts $account"
|
|
|
|
done
|
|
|
|
|
|
|
|
mkdir -p /nix/etc/nix
|
|
|
|
cat > /nix/etc/nix/nix.conf <<EOF
|
|
|
|
build-allow-root = false
|
|
|
|
build-users = $accounts
|
|
|
|
EOF
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2006-11-19 19:16:29 +01:00
|
|
|
# Set up the Upstart jobs.
|
|
|
|
export UPSTART_CFG_DIR=/etc/event.d
|
|
|
|
|
2006-11-23 18:43:28 +01:00
|
|
|
rm -f /etc/event.d
|
2006-11-19 21:07:45 +01:00
|
|
|
ln -sf @upstartJobs@/etc/event.d /etc/event.d
|
2006-11-06 23:21:50 +01:00
|
|
|
|
2006-11-13 12:41:27 +01:00
|
|
|
|
2006-11-06 23:21:50 +01:00
|
|
|
# Show a nice greeting on each terminal.
|
|
|
|
cat > /etc/issue <<EOF
|
|
|
|
|
|
|
|
<<< Welcome to NixOS (\m) - Kernel \r (\l) >>>
|
|
|
|
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
2006-11-13 12:41:27 +01:00
|
|
|
|
2006-11-07 23:05:27 +01:00
|
|
|
# Additional path for the interactive shell.
|
2006-11-28 18:34:27 +01:00
|
|
|
PATH=@wrapperDir@:@fullPath@/bin:@fullPath@/sbin
|
2006-11-07 23:05:27 +01:00
|
|
|
|
|
|
|
cat > /etc/profile <<EOF
|
|
|
|
export PATH=$PATH
|
|
|
|
export MODULE_DIR=$MODULE_DIR
|
2006-11-28 16:06:08 +01:00
|
|
|
export NIX_CONF_DIR=/nix/etc/nix
|
2006-11-25 01:39:43 +01:00
|
|
|
|
2006-11-28 17:59:47 +01:00
|
|
|
source $(dirname $(readlink -f $(type -tp nix-env)))/../etc/profile.d/nix.sh
|
2006-11-25 01:39:43 +01:00
|
|
|
|
|
|
|
alias ll="ls -l"
|
|
|
|
|
2006-11-23 17:00:23 +01:00
|
|
|
if test -f /etc/profile.local; then
|
|
|
|
source /etc/profile.local
|
|
|
|
fi
|
2006-11-07 23:05:27 +01:00
|
|
|
EOF
|
|
|
|
|
2006-11-13 12:41:27 +01:00
|
|
|
|
2006-11-28 18:34:27 +01:00
|
|
|
# Make a few setuid programs work.
|
|
|
|
wrapperDir=@wrapperDir@
|
|
|
|
if test -d $wrapperDir; then rm -f $wrapperDir/*; fi
|
|
|
|
mkdir -p $wrapperDir
|
|
|
|
for i in passwd su; do
|
|
|
|
program=$(type -tp $i)
|
|
|
|
cp $(type -tp setuid-wrapper) $wrapperDir/$i
|
|
|
|
echo -n $program > $wrapperDir/$i.real
|
|
|
|
chown root.root $wrapperDir/$i
|
|
|
|
chmod 4755 $wrapperDir/$i
|
|
|
|
done
|
|
|
|
|
|
|
|
|
2006-11-10 15:38:15 +01:00
|
|
|
# Set the host name.
|
2006-11-27 17:26:51 +01:00
|
|
|
hostname @hostName@
|
2006-11-10 15:38:15 +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.
|
|
|
|
exec @upstart@/sbin/init -v
|