From 12344a564113abc442d13561aba2c433e8bfeca3 Mon Sep 17 00:00:00 2001 From: Joe Konno Date: Tue, 23 Jul 2019 13:32:10 -0700 Subject: [PATCH] InstallerYAMLSyntax: fix cmdline bug from example The kernel-arguments example is missing a pair of quotes for the remove field-- without the quotes, two removal entries are added to cmdline-removal.d on installation: "console=ttyS0" and "115200n8". The quotes ensure that a single cmdline-removal.d entry, "console=ttyS0,115200n8", is generated at installation time on the target. Signed-off-by: Joe Konno --- scripts/InstallerYAMLSyntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/InstallerYAMLSyntax.md b/scripts/InstallerYAMLSyntax.md index 4854a1e..f5cf61a 100644 --- a/scripts/InstallerYAMLSyntax.md +++ b/scripts/InstallerYAMLSyntax.md @@ -150,7 +150,7 @@ Item | Description | Required? ```yaml kernel-arguments: { add: ["nomodeset", "i915.modeset=0"], - remove: [console=ttyS0,115200n8] + remove: ["console=ttyS0,115200n8"] } ```