From 034bd3600fbc806a7b00ccd4a7e015e5cd6a5e0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciro=20Santilli=20=E5=85=AD=E5=9B=9B=E4=BA=8B=E4=BB=B6=20?= =?UTF-8?q?=E6=B3=95=E8=BD=AE=E5=8A=9F?= Date: Tue, 20 Nov 2018 00:00:02 +0000 Subject: [PATCH] build-buildroot: fix qemu-img -T order Fix #42 --- common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.py b/common.py index 64bd4ee..3b0f933 100644 --- a/common.py +++ b/common.py @@ -558,10 +558,10 @@ def raw_to_qcow2(prebuilt=False, reverse=False): common.run_cmd( [ qemu_img_executable, common.Newline, - 'convert', common.Newline, ] + disable_trace + [ + 'convert', common.Newline, '-f', infmt, common.Newline, '-O', outfmt, common.Newline, infile, common.Newline,