2004-02-16 09:41:00 +00:00
|
|
|
#! @bash@/bin/sh -e
|
|
|
|
|
2004-02-18 10:56:07 +00:00
|
|
|
export PATH=@nix@/bin:@bash@/bin:@coreutils@/bin:@findutils@/bin:@utillinux@/bin:@utillinux@/sbin:@sysvinit@/bin:@sysvinit@/sbin:@e2fsprogs@/bin:@e2fsprogs@/sbin
|
2004-02-16 09:41:00 +00:00
|
|
|
|
|
|
|
echo "--- Nix ---"
|
|
|
|
|
2004-02-18 10:56:07 +00:00
|
|
|
echo "mounting /proc..."
|
|
|
|
mount -n -t proc none /proc
|
|
|
|
|
|
|
|
echo "checking /dev/root..."
|
|
|
|
e2fsck -y /dev/root || test "$?" -le 1
|
|
|
|
|
|
|
|
echo "remounting / writable..."
|
|
|
|
mount -n -o remount,rw /dev/root /
|
|
|
|
|
|
|
|
echo "mounting /mnt/host..."
|
|
|
|
mount -n -t hostfs none /mnt/host
|
2004-02-16 09:41:00 +00:00
|
|
|
|
2004-02-18 14:56:32 +00:00
|
|
|
echo "boot done."
|