From 8b9fe661cf51b40c7eddb085ec2aac0d1e5ebfe3 Mon Sep 17 00:00:00 2001 From: InsanePrawn Date: Tue, 16 Aug 2022 18:01:21 +0200 Subject: [PATCH] image.py: remove iflag=direct from dd argv as it errors out on tmpfs --- image.py | 1 - 1 file changed, 1 deletion(-) diff --git a/image.py b/image.py index 76937b2..7f0fd75 100644 --- a/image.py +++ b/image.py @@ -30,7 +30,6 @@ def dd_image(input: str, output: str, blocksize='1M') -> CompletedProcess: f'if={input}', f'of={output}', f'bs={blocksize}', - 'iflag=direct', 'oflag=direct', 'status=progress', 'conv=sync,noerror',