|
@@ -4316,8 +4316,13 @@ static int img_dd(int argc, char **argv)
|
|
|
goto out;
|
|
|
}
|
|
|
|
|
|
- blk2 = img_open(image_opts, out.filename, out_fmt, BDRV_O_RDWR,
|
|
|
- false, false, false);
|
|
|
+ /* TODO, we can't honour --image-opts for the target,
|
|
|
+ * since it needs to be given in a format compatible
|
|
|
+ * with the bdrv_create() call above which does not
|
|
|
+ * support image-opts style.
|
|
|
+ */
|
|
|
+ blk2 = img_open_file(out.filename, out_fmt, BDRV_O_RDWR,
|
|
|
+ false, false, false);
|
|
|
|
|
|
if (!blk2) {
|
|
|
ret = -1;
|