X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=appliance%2Finit;h=b8133caf9c3ffd61caa210c603dae1d54ec384b5;hb=c94c97db6c980592aef3f1b4b73a90a8b4ecc47a;hp=15dab6142e9970b68c7804dbec8692bffbe9c192;hpb=508f1ee87e816bf6b6fc8e629ccbb2d61a971169;p=libguestfs.git diff --git a/appliance/init b/appliance/init index 15dab61..b8133ca 100755 --- a/appliance/init +++ b/appliance/init @@ -5,10 +5,12 @@ echo Starting /init script ... PATH=/sbin:/usr/sbin:/bin:/usr/bin export PATH +mkdir -p /sysroot + mount -t proc /proc /proc mount -t sysfs /sys /sys -if [ -x /etc/init.d/udev ]; then +if [ ! -L /etc/init.d/udev -a -x /etc/init.d/udev ]; then if type service >/dev/null 2>&1; then service udev start else @@ -52,8 +54,8 @@ hwclock -u -s # Set up the network. ifconfig lo 127.0.0.1 -ifconfig eth0 10.0.2.10 -route add default gw 10.0.2.2 +ifconfig eth0 169.254.2.10 +route add default gw 169.254.2.2 # Scan for LVM. modprobe dm_mod ||: @@ -64,6 +66,9 @@ lvm vgchange -ay --ignorelockingfailure # Improve virtio-blk performance (RHBZ#509383). for f in /sys/block/vd*/queue/rotational; do echo 1 > $f; done +# http://kbase.redhat.com/faq/docs/DOC-5428 +for f in /sys/block/[hsv]d*/queue/scheduler; do echo noop > $f; done + # Keep these to enhance the usefulness of debug output. ls -l /dev cat /proc/mounts