From c32f0ed25c8b0a163fcb391ece70db49bdaf269f Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Fri, 17 Apr 2009 22:54:03 +0200 Subject: [PATCH] fix start in qemu --- packages/sysutils/busybox/scripts/init.initramfs | 4 ++-- packages/virtual/image/install | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/sysutils/busybox/scripts/init.initramfs b/packages/sysutils/busybox/scripts/init.initramfs index 360073caa6..75afba9ee6 100755 --- a/packages/sysutils/busybox/scripts/init.initramfs +++ b/packages/sysutils/busybox/scripts/init.initramfs @@ -8,8 +8,8 @@ /bin/busybox mdev -s - /bin/busybox mount -t ext3 -o ro,noatime $BOOT /flash - /bin/busybox mount -t ext3 -o rw,noatime $DISK /storage + /bin/busybox mount -o ro,noatime $BOOT /flash + /bin/busybox mount -o rw,noatime $DISK /storage if [ -f "/storage/.update/openelec.kernel" ]; then echo "updating Kernel..." diff --git a/packages/virtual/image/install b/packages/virtual/image/install index 3414e87859..3f8971e128 100755 --- a/packages/virtual/image/install +++ b/packages/virtual/image/install @@ -112,7 +112,7 @@ case "$2" in mkdir -p $ROOT/.tmp sudo mount -o loop $ROOT/target/$PROJECT-$MEDIACENTER-$OPENELEC_VERSION-qemu.flash $ROOT/.tmp - cp -R $ROOT/target/$PROJECT-$MEDIACENTER-$OPENELEC_VERSION.system $ROOT/.tmp + cp -R $ROOT/target/$PROJECT-$MEDIACENTER-$OPENELEC_VERSION.system $ROOT/.tmp/openelec.system sudo umount $ROOT/.tmp rm -rf $ROOT/target/$PROJECT-$MEDIACENTER-$OPENELEC_VERSION-qemu.store