From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MU4wN-0003IS-By for qemu-devel@nongnu.org; Thu, 23 Jul 2009 16:30:59 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MU4wI-0003He-7T for qemu-devel@nongnu.org; Thu, 23 Jul 2009 16:30:58 -0400 Received: from [199.232.76.173] (port=42843 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MU4wI-0003Hb-2N for qemu-devel@nongnu.org; Thu, 23 Jul 2009 16:30:54 -0400 Received: from moutng.kundenserver.de ([212.227.126.187]:50959) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MU4wH-00035R-5A for qemu-devel@nongnu.org; Thu, 23 Jul 2009 16:30:53 -0400 From: Stefan Weil Date: Thu, 23 Jul 2009 22:30:45 +0200 Message-Id: <1248381045-7405-1-git-send-email-weil@mail.berlios.de> In-Reply-To: <4A6888AC.3050509@mail.berlios.de> References: <4A6888AC.3050509@mail.berlios.de> Subject: [Qemu-devel] [PATCH] add support for new option of vdi format List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Christoph Hellwig , QEMU Developers VDI supports an image option 'static'. Ignore "static=off" from qemu-img output. Cc: Christoph Hellwig Cc: QEMU Developers Signed-off-by: Stefan Weil --- common.rc | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common.rc b/common.rc index 16cf77d..4ba5c71 100644 --- a/common.rc +++ b/common.rc @@ -61,8 +61,8 @@ _make_test_img() sed -e "s#$IMGFMT#IMGFMT#g" | \ sed -e "s# encryption=off##g" | \ sed -e "s# cluster_size=0##g" | \ - sed -e "s# compat6=off##g" - + sed -e "s# compat6=off##g" | \ + sed -e "s# static=off##g" } _cleanup_test_img() -- 1.5.6.5