2006-11-08 03:34:14 +01:00
|
|
|
#! @shell@
|
|
|
|
|
2007-02-05 16:52:55 +01:00
|
|
|
# - [mount target device] <- currently disabled
|
2006-11-08 03:34:14 +01:00
|
|
|
# - make Nix store etc.
|
2007-02-05 16:52:55 +01:00
|
|
|
# - copy closure of Nix to target device
|
2006-11-08 03:34:14 +01:00
|
|
|
# - register validity
|
2007-02-05 16:52:55 +01:00
|
|
|
# - with a chroot to the target device:
|
2011-10-30 16:19:58 +01:00
|
|
|
# * nix-env -p /nix/var/nix/profiles/system -i <nix-expr for the configuration>
|
2007-02-05 16:52:55 +01:00
|
|
|
# * run the activation script of the configuration (also installs Grub)
|
2006-11-08 03:34:14 +01:00
|
|
|
|
2006-11-11 23:31:26 +01:00
|
|
|
set -e
|
2012-04-10 16:39:12 +02:00
|
|
|
shopt -s nullglob
|
2006-11-11 23:31:26 +01:00
|
|
|
|
2007-02-05 16:52:55 +01:00
|
|
|
if test -z "$mountPoint"; then
|
|
|
|
mountPoint=/mnt
|
|
|
|
fi
|
2006-11-08 03:34:14 +01:00
|
|
|
|
2007-02-06 11:41:04 +01:00
|
|
|
if test -z "$NIXOS_CONFIG"; then
|
2012-11-15 22:53:57 +01:00
|
|
|
NIXOS_CONFIG=/etc/nixos/configuration.nix
|
2006-11-08 03:34:14 +01:00
|
|
|
fi
|
|
|
|
|
2007-01-11 01:06:46 +01:00
|
|
|
if ! test -e "$mountPoint"; then
|
|
|
|
echo "mount point $mountPoint doesn't exist"
|
|
|
|
exit 1
|
|
|
|
fi
|
2007-02-05 16:52:55 +01:00
|
|
|
|
2007-02-05 22:06:59 +01:00
|
|
|
if ! grep -F -q " $mountPoint " /proc/mounts; then
|
2007-02-05 16:52:55 +01:00
|
|
|
echo "$mountPoint doesn't appear to be a mount point"
|
|
|
|
exit 1
|
|
|
|
fi
|
2012-11-22 12:04:00 +01:00
|
|
|
|
2012-11-15 22:53:57 +01:00
|
|
|
if ! test -e "$mountPoint/$NIXOS_CONFIG"; then
|
2012-03-07 22:17:46 +01:00
|
|
|
echo "configuration file $NIXOS_CONFIG doesn't exist"
|
2007-01-11 01:06:46 +01:00
|
|
|
exit 1
|
|
|
|
fi
|
2012-11-22 12:04:00 +01:00
|
|
|
|
2007-01-11 01:06:46 +01:00
|
|
|
|
2012-04-10 16:39:12 +02:00
|
|
|
|
|
|
|
# Mount some stuff in the target root directory. We bind-mount /etc
|
|
|
|
# into the chroot because we need networking and the nixbld user
|
|
|
|
# accounts in /etc/passwd. But we do need the target's /etc/nixos.
|
2013-04-11 22:12:43 +02:00
|
|
|
mkdir -m 0755 -p $mountPoint/dev $mountPoint/proc $mountPoint/sys $mountPoint/mnt $mountPoint/mnt2 $mountPoint/mnt-nixos $mountPoint/mnt-nixpkgs $mountPoint/etc /etc/nixos
|
2012-11-15 22:53:57 +01:00
|
|
|
mount --make-private / # systemd makes / shared, which is annoying
|
|
|
|
mount --bind / $mountPoint/mnt
|
2013-01-25 15:59:53 +01:00
|
|
|
mount --bind /nix $mountPoint/mnt/nix
|
2012-11-15 22:53:57 +01:00
|
|
|
mount --bind /nix/store $mountPoint/mnt/nix/store
|
|
|
|
mount --bind /dev $mountPoint/dev
|
|
|
|
mount --bind /dev/shm $mountPoint/dev/shm
|
|
|
|
mount --bind /proc $mountPoint/proc
|
|
|
|
mount --bind /sys $mountPoint/sys
|
2013-04-10 15:15:54 +02:00
|
|
|
mount --bind /sys/firmware/efi/efivars $mountPoint/sys/firmware/efi/efivars &>/dev/null || true
|
2012-11-15 22:53:57 +01:00
|
|
|
mount --bind $mountPoint/etc/nixos $mountPoint/mnt2
|
2012-04-10 16:39:12 +02:00
|
|
|
mount --bind /etc $mountPoint/etc
|
2012-11-15 22:53:57 +01:00
|
|
|
mount --bind $mountPoint/mnt2 $mountPoint/etc/nixos
|
2008-05-09 07:58:21 +02:00
|
|
|
|
2008-05-09 11:32:31 +02:00
|
|
|
cleanup() {
|
2012-04-10 16:39:12 +02:00
|
|
|
set +e
|
2012-11-15 22:53:57 +01:00
|
|
|
mountpoint -q $mountPoint/etc/nixos && umount $mountPoint/etc/nixos
|
|
|
|
mountpoint -q $mountPoint/etc && umount $mountPoint/etc
|
|
|
|
umount $mountPoint/mnt2
|
2013-04-11 22:12:43 +02:00
|
|
|
umount $mountPoint/mnt-nixos
|
|
|
|
umount $mountPoint/mnt-nixpkgs
|
2013-04-10 21:08:21 +02:00
|
|
|
umount $mountPoint/sys/firmware/efi/efivars &>/dev/null || true
|
2012-11-15 22:53:57 +01:00
|
|
|
umount $mountPoint/sys
|
|
|
|
umount $mountPoint/proc
|
|
|
|
umount $mountPoint/dev/shm
|
|
|
|
umount $mountPoint/dev
|
|
|
|
umount $mountPoint/mnt/nix/store
|
2013-01-25 15:59:53 +01:00
|
|
|
umount $mountPoint/mnt/nix
|
2012-11-15 22:53:57 +01:00
|
|
|
umount $mountPoint/mnt
|
2013-04-11 22:12:43 +02:00
|
|
|
rmdir $mountPoint/mnt $mountPoint/mnt2 $mountPoint/mnt-nixos $mountPoint/mnt-nixpkgs
|
2008-05-09 11:32:31 +02:00
|
|
|
}
|
|
|
|
|
2006-11-11 23:31:26 +01:00
|
|
|
trap "cleanup" EXIT
|
2006-11-11 18:59:08 +01:00
|
|
|
|
2006-11-13 12:42:23 +01:00
|
|
|
mkdir -m 01777 -p $mountPoint/tmp
|
|
|
|
mkdir -m 0755 -p $mountPoint/var
|
2006-11-11 18:59:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Create the necessary Nix directories on the target device, if they
|
|
|
|
# don't already exist.
|
2006-11-13 12:42:23 +01:00
|
|
|
mkdir -m 0755 -p \
|
2011-10-30 16:19:58 +01:00
|
|
|
$mountPoint/nix/var/nix/gcroots \
|
|
|
|
$mountPoint/nix/var/nix/temproots \
|
|
|
|
$mountPoint/nix/var/nix/manifests \
|
|
|
|
$mountPoint/nix/var/nix/userpool \
|
|
|
|
$mountPoint/nix/var/nix/profiles \
|
|
|
|
$mountPoint/nix/var/nix/db \
|
|
|
|
$mountPoint/nix/var/log/nix/drvs
|
2006-11-11 18:59:08 +01:00
|
|
|
|
2012-04-10 16:39:12 +02:00
|
|
|
mkdir -m 1775 -p $mountPoint/nix/store
|
2013-02-04 15:44:32 +01:00
|
|
|
build_users_group=$(@perl@/bin/perl -e 'use Nix::Config; Nix::Config::readConfig; print $Nix::Config::config{"build-users-group"};')
|
2013-02-04 13:46:09 +01:00
|
|
|
if test -n "$build_users_group"; then
|
|
|
|
chown root:"$build_users_group" $mountPoint/nix/store
|
|
|
|
else
|
|
|
|
chown root $mountPoint/nix/store
|
|
|
|
fi
|
2012-04-10 16:39:12 +02:00
|
|
|
|
|
|
|
|
2006-11-13 20:01:39 +01:00
|
|
|
# Get the store paths to copy from the references graph.
|
2007-01-23 16:07:30 +01:00
|
|
|
storePaths=$(@perl@/bin/perl @pathsFromGraph@ @nixClosure@)
|
2006-11-13 20:01:39 +01:00
|
|
|
|
2008-09-08 14:40:05 +02:00
|
|
|
|
2006-11-08 03:34:14 +01:00
|
|
|
# Copy Nix to the Nix store on the target device.
|
2007-01-10 00:12:41 +01:00
|
|
|
echo "copying Nix to $mountPoint...."
|
2006-11-13 20:01:39 +01:00
|
|
|
for i in $storePaths; do
|
2006-11-11 18:59:08 +01:00
|
|
|
echo " $i"
|
2012-05-25 16:06:46 +02:00
|
|
|
chattr -R -i $mountPoint/$i 2> /dev/null || true # clear immutable bit
|
2011-10-30 16:19:58 +01:00
|
|
|
rsync -a $i $mountPoint/nix/store/
|
2006-11-11 18:59:08 +01:00
|
|
|
done
|
|
|
|
|
|
|
|
|
2009-06-17 12:07:31 +02:00
|
|
|
# We don't have locale-archive in the chroot, so clear $LANG.
|
|
|
|
export LANG=
|
2012-04-10 15:28:17 +02:00
|
|
|
export LC_ALL=
|
|
|
|
export LC_TIME=
|
2009-06-17 12:07:31 +02:00
|
|
|
|
|
|
|
|
2013-02-06 18:20:52 +01:00
|
|
|
# There is no daemon in the chroot
|
|
|
|
unset NIX_REMOTE
|
|
|
|
|
|
|
|
|
2012-04-10 16:39:12 +02:00
|
|
|
# Create a temporary Nix config file that causes the nixbld users to
|
|
|
|
# be used.
|
2013-02-04 13:46:09 +01:00
|
|
|
if test -n "$build_users_group"; then
|
|
|
|
echo "build-users-group = $build_users_group" > $mountPoint/tmp/nix.conf
|
|
|
|
fi
|
2013-02-04 15:44:32 +01:00
|
|
|
binary_caches=$(@perl@/bin/perl -e 'use Nix::Config; Nix::Config::readConfig; print $Nix::Config::config{"binary-caches"};')
|
|
|
|
if test -n "$binary_caches"; then
|
2013-02-05 12:39:18 +01:00
|
|
|
echo "binary-caches = $binary_caches" >> $mountPoint/tmp/nix.conf
|
2013-02-04 15:44:32 +01:00
|
|
|
fi
|
2012-04-10 16:39:12 +02:00
|
|
|
export NIX_CONF_DIR=/tmp
|
|
|
|
|
|
|
|
|
2006-11-11 18:59:08 +01:00
|
|
|
# Register the paths in the Nix closure as valid. This is necessary
|
|
|
|
# to prevent them from being deleted the first time we install
|
|
|
|
# something. (I.e., Nix will see that, e.g., the glibc path is not
|
|
|
|
# valid, delete it to get it out of the way, but as a result nothing
|
|
|
|
# will work anymore.)
|
2006-11-13 20:01:39 +01:00
|
|
|
chroot $mountPoint @nix@/bin/nix-store --register-validity < @nixClosure@
|
2006-11-11 18:59:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Create the required /bin/sh symlink; otherwise lots of things
|
|
|
|
# (notably the system() function) won't work.
|
2006-11-13 12:42:23 +01:00
|
|
|
mkdir -m 0755 -p $mountPoint/bin
|
2007-01-09 22:25:53 +01:00
|
|
|
# !!! assuming that @shell@ is in the closure
|
|
|
|
ln -sf @shell@ $mountPoint/bin/sh
|
2006-11-11 18:59:08 +01:00
|
|
|
|
|
|
|
|
2012-04-10 17:36:50 +02:00
|
|
|
if test -n "$NIXOS_PREPARE_CHROOT_ONLY"; then
|
|
|
|
echo "User requested only to prepare chroot. Exiting."
|
2012-05-25 04:30:52 +02:00
|
|
|
exit 0
|
2012-04-10 17:36:50 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
2008-09-08 14:40:05 +02:00
|
|
|
# Make the build below copy paths from the CD if possible. Note that
|
|
|
|
# /mnt in the chroot is the root of the CD.
|
|
|
|
export NIX_OTHER_STORES=/mnt/nix:$NIX_OTHER_STORES
|
2007-01-23 18:17:10 +01:00
|
|
|
|
|
|
|
|
2012-04-10 17:36:50 +02:00
|
|
|
# Make manifests available in the chroot.
|
|
|
|
rm -f $mountPoint/nix/var/nix/manifests/*
|
|
|
|
for i in /nix/var/nix/manifests/*.nixmanifest; do
|
|
|
|
chroot $mountPoint @nix@/bin/nix-store -r "$(readlink -f "$i")" > /dev/null
|
|
|
|
cp -pd "$i" $mountPoint/nix/var/nix/manifests/
|
|
|
|
done
|
|
|
|
|
2006-11-11 18:59:08 +01:00
|
|
|
|
2012-04-23 02:41:37 +02:00
|
|
|
# Get the absolute path to the NixOS/Nixpkgs sources.
|
2013-04-11 22:12:43 +02:00
|
|
|
mount --bind $(readlink -f $(nix-instantiate --find-file nixpkgs)) $mountPoint/mnt-nixpkgs
|
|
|
|
mount --bind $(readlink -f $(nix-instantiate --find-file nixos)) $mountPoint/mnt-nixos
|
2012-04-23 02:41:37 +02:00
|
|
|
|
|
|
|
|
2006-11-11 23:31:26 +01:00
|
|
|
# Build the specified Nix expression in the target store and install
|
|
|
|
# it into the system configuration profile.
|
2007-01-23 18:17:10 +01:00
|
|
|
echo "building the system configuration..."
|
2013-04-11 22:12:43 +02:00
|
|
|
NIX_PATH="nixpkgs=/mnt-nixpkgs:nixos=/mnt-nixos:nixos-config=$NIXOS_CONFIG" NIXOS_CONFIG= \
|
2012-03-02 13:38:22 +01:00
|
|
|
chroot $mountPoint @nix@/bin/nix-env \
|
2012-03-07 22:17:46 +01:00
|
|
|
-p /nix/var/nix/profiles/system -f '<nixos>' --set -A system --show-trace
|
2006-12-17 00:50:10 +01:00
|
|
|
|
|
|
|
|
2012-04-23 02:41:37 +02:00
|
|
|
# Copy the NixOS/Nixpkgs sources to the target as the initial contents
|
|
|
|
# of the NixOS channel.
|
2012-04-26 15:16:58 +02:00
|
|
|
mkdir -m 0755 -p $mountPoint/nix/var/nix/profiles
|
|
|
|
mkdir -m 1777 -p $mountPoint/nix/var/nix/profiles/per-user
|
|
|
|
mkdir -m 0755 -p $mountPoint/nix/var/nix/profiles/per-user/root
|
2013-02-04 13:38:54 +01:00
|
|
|
srcs=$(nix-env -p /nix/var/nix/profiles/per-user/root/channels -q nixos --no-name --out-path 2>/dev/null || echo -n "")
|
|
|
|
if test -n "$srcs"; then
|
|
|
|
echo "copying NixOS/Nixpkgs sources..."
|
|
|
|
chroot $mountPoint @nix@/bin/nix-env \
|
|
|
|
-p /nix/var/nix/profiles/per-user/root/channels -i "$srcs" --quiet
|
|
|
|
fi
|
2012-04-23 02:41:37 +02:00
|
|
|
mkdir -m 0700 -p $mountPoint/root/.nix-defexpr
|
2012-05-25 01:37:06 +02:00
|
|
|
ln -sfn /nix/var/nix/profiles/per-user/root/channels $mountPoint/root/.nix-defexpr/channels
|
2006-11-13 00:30:03 +01:00
|
|
|
|
|
|
|
|
2012-05-15 15:50:36 +02:00
|
|
|
# We're done building/downloading, so we don't need the /etc bind
|
|
|
|
# mount anymore. In fact, below we want to modify the target's /etc.
|
|
|
|
umount $mountPoint/etc/nixos
|
|
|
|
umount $mountPoint/etc
|
|
|
|
|
|
|
|
|
2008-05-09 12:08:02 +02:00
|
|
|
# Grub needs an mtab.
|
|
|
|
ln -sfn /proc/mounts $mountPoint/etc/mtab
|
|
|
|
|
|
|
|
|
2006-12-16 22:48:12 +01:00
|
|
|
# Mark the target as a NixOS installation, otherwise
|
|
|
|
# switch-to-configuration will chicken out.
|
|
|
|
touch $mountPoint/etc/NIXOS
|
|
|
|
|
2008-05-09 12:08:02 +02:00
|
|
|
|
2006-11-13 00:30:03 +01:00
|
|
|
# Switch to the new system configuration. This will install Grub with
|
|
|
|
# a menu default pointing at the kernel/initrd/etc of the new
|
|
|
|
# configuration.
|
|
|
|
echo "finalising the installation..."
|
2006-12-17 01:10:28 +01:00
|
|
|
NIXOS_INSTALL_GRUB=1 chroot $mountPoint \
|
2011-10-30 16:19:58 +01:00
|
|
|
/nix/var/nix/profiles/system/bin/switch-to-configuration boot
|