diff --git a/packages/image/install b/packages/image/install index 5644316986..532460c3a8 100755 --- a/packages/image/install +++ b/packages/image/install @@ -177,16 +177,16 @@ case "$2" in mkdir -p $TARGET_IMG rm -rf $TARGET_IMG/OpenELEC-$TARGET_VERSION-qemu.flash qemu-img create -f raw $TARGET_IMG/OpenELEC-$TARGET_VERSION-qemu.flash 128M - /sbin/mkfs.ext3 -L OpenELEC -F $TARGET_IMG/OpenELEC-$TARGET_VERSION-qemu.flash + /sbin/mkfs.ext4 -L Boot -F $TARGET_IMG/OpenELEC-$TARGET_VERSION-qemu.flash mkdir -p $ROOT/.tmp sudo mount -o loop $TARGET_IMG/OpenELEC-$TARGET_VERSION-qemu.flash $ROOT/.tmp cp -R $TARGET_IMG/OpenELEC-$TARGET_VERSION.system $ROOT/.tmp/openelec.system sudo umount $ROOT/.tmp - rm -rf $TARGET_IMG/OpenELEC-$TARGET_VERSION-qemu.store - qemu-img create -f raw $TARGET_IMG/OpenELEC-$TARGET_VERSION-qemu.store 40M - /sbin/mkfs.ext3 -L OpenELEC -F $TARGET_IMG/OpenELEC-$TARGET_VERSION-qemu.store + rm -rf $TARGET_IMG/OpenELEC-$TARGET_VERSION-qemu.storage + qemu-img create -f raw $TARGET_IMG/OpenELEC-$TARGET_VERSION-qemu.storage 500M + /sbin/mkfs.ext4 -L Storage -F $TARGET_IMG/OpenELEC-$TARGET_VERSION-qemu.storage ;;