From: Felipe Sateler Date: Sun, 26 Feb 2017 14:00:02 +0000 (-0300) Subject: Allow setting kernel command line in the configuration file X-Git-Tag: v2~22^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F63%2Fhead;p=thirdparty%2Fmkosi.git Allow setting kernel command line in the configuration file --- diff --git a/mkosi b/mkosi index 3da363fab..05a8b1360 100755 --- a/mkosi +++ b/mkosi @@ -1709,6 +1709,9 @@ def process_setting(args, section, key, value): elif key == "Bootable": if args.bootable is None: args.bootable = parse_boolean(value) + elif key == "KernelCommandLine": + if args.kernel_commandline is None: + args.kernel_commandline = value elif key == "SecureBoot": if args.secure_boot is None: args.secure_boot = parse_boolean(value)