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 <joe.konno@intel.com>
This commit is contained in:
Joe Konno
2019-07-23 14:50:18 -07:00
committed by Reagan Lopez
parent 2953bc380d
commit 12344a5641
+1 -1
View File
@@ -150,7 +150,7 @@ Item | Description | Required?
```yaml
kernel-arguments: {
add: ["nomodeset", "i915.modeset=0"],
remove: [console=ttyS0,115200n8]
remove: ["console=ttyS0,115200n8"]
}
```