From: Daan De Meyer Date: Sun, 21 Aug 2022 10:02:53 +0000 (+0200) Subject: Drop --no-tell-kernel from sfdisk command line X-Git-Tag: v14~67^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1142%2Fhead;p=thirdparty%2Fmkosi.git Drop --no-tell-kernel from sfdisk command line --- diff --git a/mkosi/backend.py b/mkosi/backend.py index f06cd0223..7c1173498 100644 --- a/mkosi/backend.py +++ b/mkosi/backend.py @@ -406,7 +406,7 @@ class PartitionTable: if 'disk' in ARG_DEBUG: print_between_lines(spec) - cmd: List[PathString] = ["sfdisk", "--color=never", "--no-reread", "--no-tell-kernel", device] + cmd: List[PathString] = ["sfdisk", "--color=never", "--no-reread", device] if quiet: cmd += ["--quiet"]