mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
656ea85e60
* Unmount, don't remount / on halt. svn path=/nixu/trunk/; revision=1169
34 lines
642 B
Bash
34 lines
642 B
Bash
#! @bash@/bin/sh -e
|
|
|
|
set -e
|
|
|
|
. @out@/bin/env.sh
|
|
|
|
echo "--- Nix ---"
|
|
|
|
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
|
|
|
|
echo "setting up hostname..."
|
|
hostname uml
|
|
|
|
echo "enabling loopback interface..."
|
|
ifconfig lo 127.0.0.1
|
|
|
|
echo "enabling ethernet interface..."
|
|
ifconfig eth0 $(cat /etc/networking/local-ip) up || true
|
|
|
|
echo "setting up routing table..."
|
|
route add default gw $(cat /etc/networking/gateway-ip) || true
|
|
|
|
echo "boot done."
|