2004-02-14 23:56:51 +01:00
|
|
|
#! /bin/sh -e
|
|
|
|
|
2005-07-06 18:00:20 +02:00
|
|
|
sysvinitPath=@sysvinitPath@
|
|
|
|
bootPath=@bootPath@
|
2004-02-14 23:56:51 +01:00
|
|
|
|
2005-07-14 18:57:39 +02:00
|
|
|
if ! test -n "$1"
|
|
|
|
then
|
|
|
|
echo "need URL for manifest!"
|
|
|
|
exit
|
|
|
|
else
|
|
|
|
manifest=$1
|
|
|
|
fi
|
|
|
|
|
2004-02-14 23:56:51 +01:00
|
|
|
make_dir() {
|
|
|
|
mode=$1
|
|
|
|
name=$2
|
|
|
|
echo creating $name...
|
|
|
|
if ! test -d $root/$name; then mkdir $root/$name; fi
|
|
|
|
chmod $mode $root/$name
|
|
|
|
}
|
|
|
|
|
2004-08-06 15:50:42 +02:00
|
|
|
|
|
|
|
touch_file() {
|
|
|
|
name=$1
|
2004-08-06 19:22:24 +02:00
|
|
|
echo touching $name...
|
2004-08-06 15:50:42 +02:00
|
|
|
if ! test -d $root/$name; then touch $root/$name; fi
|
|
|
|
}
|
2004-02-14 23:56:51 +01:00
|
|
|
root=/tmp/mnt
|
|
|
|
|
2004-08-06 19:22:24 +02:00
|
|
|
make_dir 00755 /bin
|
2004-02-14 23:56:51 +01:00
|
|
|
make_dir 00755 /dev
|
|
|
|
make_dir 00755 /proc
|
|
|
|
make_dir 01777 /tmp
|
2004-02-18 11:56:07 +01:00
|
|
|
make_dir 00755 /etc # global non-constant configuration
|
2004-08-06 19:22:24 +02:00
|
|
|
make_dir 00755 /etc-secret
|
2004-02-18 11:56:07 +01:00
|
|
|
make_dir 00755 /var
|
2004-02-14 23:56:51 +01:00
|
|
|
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
|
2005-07-14 18:57:39 +02:00
|
|
|
make_dir 00755 /nix/var/nix/manifests
|
2004-02-14 23:56:51 +01:00
|
|
|
make_dir 00755 /nix/var/log
|
|
|
|
make_dir 00755 /nix/var/log/nix
|
2005-07-11 19:59:19 +02:00
|
|
|
make_dir 00755 /nixpkgs
|
2005-07-19 17:39:32 +02:00
|
|
|
make_dir 00755 /nixpkgs/trunk
|
2004-02-18 11:56:07 +01:00
|
|
|
make_dir 00755 /mnt
|
|
|
|
make_dir 00755 /mnt/host
|
|
|
|
make_dir 00755 /home
|
|
|
|
make_dir 00755 /home/root
|
|
|
|
|
2005-07-19 17:39:32 +02:00
|
|
|
mknod $root/dev/null c 1 3
|
|
|
|
|
2004-08-06 15:50:42 +02:00
|
|
|
touch_file /etc/passwd
|
|
|
|
touch_file /etc/shadow
|
|
|
|
touch_file /etc/group
|
|
|
|
|
2004-02-18 11:56:07 +01:00
|
|
|
rm -f $root/etc/mtab
|
2005-07-14 18:57:39 +02:00
|
|
|
#ln -s /proc/mounts $root/etc/mtab
|
2004-02-14 23:56:51 +01:00
|
|
|
|
2005-07-19 17:39:32 +02:00
|
|
|
export NIX_DATA_DIR=$root/nix/share
|
|
|
|
export NIX_LOG_DIR=$root/nix/log/nix
|
2005-07-14 18:57:39 +02:00
|
|
|
export NIX_STATE_DIR=$root/nix/var/nix
|
2005-07-19 17:39:32 +02:00
|
|
|
export NIX_CONF_DIR=$root/nix/etc
|
2005-07-08 12:06:41 +02:00
|
|
|
NIX_CMD_PATH=@NIX_CMD_PATH@/bin
|
2004-02-14 23:56:51 +01:00
|
|
|
|
|
|
|
echo initialising Nix DB...
|
2004-08-06 15:50:42 +02:00
|
|
|
#/nix/bin/nix-store --init
|
|
|
|
$NIX_CMD_PATH/nix-store --init
|
2004-02-14 23:56:51 +01:00
|
|
|
|
|
|
|
echo verifying Nix DB...
|
2004-08-06 15:50:42 +02:00
|
|
|
$NIX_CMD_PATH/nix-store --verify
|
2004-02-14 23:56:51 +01:00
|
|
|
|
2005-07-11 19:59:19 +02:00
|
|
|
echo copying nixpkgs...
|
2005-07-19 17:39:32 +02:00
|
|
|
cp -fa ../pkgs $root/nixpkgs/trunk
|
|
|
|
|
|
|
|
make_dir 0755 /tmp/scripts
|
2005-07-19 18:00:34 +02:00
|
|
|
cp -fa ../scripts $root/tmp/scripts
|
2005-07-11 19:59:19 +02:00
|
|
|
|
2005-07-19 17:39:32 +02:00
|
|
|
echo adding manifest
|
2005-07-14 18:57:39 +02:00
|
|
|
$NIX_CMD_PATH/nix-pull $manifest
|
2005-07-11 19:59:19 +02:00
|
|
|
|
2005-07-19 17:39:32 +02:00
|
|
|
echo adding packages
|
|
|
|
export NIX_ROOT=$root
|
|
|
|
unset NIX_DATA_DIR
|
|
|
|
unset NIX_LOG_DIR
|
|
|
|
unset NIX_STATE_DIR
|
|
|
|
unset NIX_CONF_DIR
|
|
|
|
|
|
|
|
storeExpr=$(echo '(import ./pkgs.nix).everything' | $NIX_CMD_PATH/nix-instantiate -v -v -)
|
|
|
|
$NIX_CMD_PATH/nix-store -r $storeExpr
|
|
|
|
|
2005-07-06 18:00:20 +02:00
|
|
|
#echo registering valid paths...
|
|
|
|
#(while read storepath; do
|
|
|
|
# echo PATH $storepath
|
|
|
|
# if ! $NIX_CMD_PATH/nix-store --isvalid $storepath 2> /dev/null; then
|
|
|
|
# (unset NIX_ROOT; $NIX_CMD_PATH/nix-store --dump $storepath) | $NIX_CMD_PATH/nix-store --restore $storepath
|
|
|
|
# $NIX_CMD_PATH/nix-store --validpath $storepath
|
|
|
|
# fi
|
|
|
|
#done) < /tmp/mystorepaths
|
|
|
|
|
|
|
|
#echo registering successors...
|
|
|
|
#(while read line; do
|
|
|
|
# echo SUCC $line
|
|
|
|
# $NIX_CMD_PATH/nix-store --successor $line
|
|
|
|
#done) < /tmp/mysuccessors
|
2004-02-14 23:56:51 +01:00
|
|
|
|
|
|
|
echo setting init symlink...
|
|
|
|
rm -f $root/init
|
2004-02-18 11:56:07 +01:00
|
|
|
ln -s $sysvinitPath/sbin/init $root/init
|
|
|
|
|
|
|
|
echo setting up inittab...
|
|
|
|
rm -f $root/etc/inittab
|
|
|
|
echo "id:2:initdefault:" >> $root/etc/inittab
|
2004-02-18 15:56:32 +01:00
|
|
|
echo "si::bootwait:$bootPath/bin/boot.sh" >> $root/etc/inittab
|
|
|
|
echo "ht:06:wait:$bootPath/bin/halt.sh" >> $root/etc/inittab
|
|
|
|
echo "1:2345:respawn:$bootPath/bin/login.sh /dev/ttys/0" >> $root/etc/inittab
|
2004-02-19 13:49:00 +01:00
|
|
|
#echo "2:2345:respawn:$bootPath/bin/login.sh /dev/ttys/1" >> $root/etc/inittab
|
|
|
|
|
|
|
|
echo setting up networking information...
|
|
|
|
make_dir 00755 /etc/networking
|
|
|
|
echo 192.168.150.1 > $root/etc/networking/local-ip
|
|
|
|
echo 192.168.150.3 > $root/etc/networking/gateway-ip
|
|
|
|
cp /etc/resolv.conf $root/etc
|
|
|
|
rm -f $root/etc/hosts
|
|
|
|
echo "127.0.0.1 localhost" >> $root/etc/hosts
|
|
|
|
echo "192.168.150.1 uml" >> $root/etc/hosts
|