nixpkgs/fill-disk.sh
Eelco Dolstra 1e87e75d07 * Use sysvinit's init to start the system. This has the happy
side-effect of initialising the console properly (i.e., enabling
  Ctrl-[C, Z]).

svn path=/nixu/trunk/; revision=801
2004-02-18 10:56:07 +00:00

79 lines
1.6 KiB
Bash
Executable file

#! /bin/sh -e
sysvinitPath=$1
initPath=$2
make_dir() {
mode=$1
name=$2
echo creating $name...
if ! test -d $root/$name; then mkdir $root/$name; fi
chmod $mode $root/$name
}
root=/tmp/mnt
echo mounting...
mount -t ext2 /dev/discs/disc0/disc $root
make_dir 00755 /dev
make_dir 00755 /proc
make_dir 01777 /tmp
make_dir 00755 /etc # global non-constant configuration
make_dir 00755 /var
make_dir 00755 /nix
make_dir 00755 /nix/store
make_dir 00755 /nix/var
make_dir 00755 /nix/var/nix
make_dir 00755 /nix/var/nix/db
make_dir 00755 /nix/var/log
make_dir 00755 /nix/var/log/nix
make_dir 00755 /mnt
make_dir 00755 /mnt/host
make_dir 00755 /home
make_dir 00755 /home/root
rm -f $root/etc/mtab
ln -s /proc/mounts $root/etc/mtab
export NIX_ROOT=$root
echo initialising Nix DB...
/nix/bin/nix-store --init
echo verifying Nix DB...
/nix/bin/nix-store --verify
echo registering valid paths...
(while read storepath; do
echo PATH $storepath
if ! /nix/bin/nix-store --isvalid $storepath 2> /dev/null; then
(unset NIX_ROOT; /nix/bin/nix-store --dump $storepath) | /nix/bin/nix-store --restore $storepath
/nix/bin/nix-store --validpath $storepath
fi
done) < /tmp/storepaths
echo registering successors...
(while read line; do
echo SUCC $line
/nix/bin/nix-store --successor $line
done) < /tmp/successors
echo setting init symlink...
rm -f $root/init
ln -s $sysvinitPath/sbin/init $root/init
echo setting up inittab...
rm -f $root/etc/inittab
echo "id:2:initdefault:" >> $root/etc/inittab
echo "si::bootwait:$initPath/bin/init" >> $root/etc/inittab
echo unmounting...
umount $root
echo syncing...
sync
echo halting...
/sbin/halt -d -f