diff options
author | Masami Hiramatsu <mhiramat@kernel.org> | 2020-02-21 17:13:42 +0900 |
---|---|---|
committer | Steven Rostedt (VMware) <rostedt@goodmis.org> | 2020-02-21 09:59:19 -0500 |
commit | 4e4694d8729f7cd6381f6691e8f83e378fce3160 (patch) | |
tree | b7c07e9ddd7681384ee330e6f8c64273c3ed52ec /tools/bootconfig/samples | |
parent | 88b913718db94697497028b85acbec8b180a4333 (diff) | |
download | linux-stable-4e4694d8729f7cd6381f6691e8f83e378fce3160.tar.gz linux-stable-4e4694d8729f7cd6381f6691e8f83e378fce3160.tar.bz2 linux-stable-4e4694d8729f7cd6381f6691e8f83e378fce3160.zip |
bootconfig: Prohibit re-defining value on same key
Currently, bootconfig adds a new value on the existing key to the tail of an
array. But this looks a bit confusing because an admin can easily rewrite
the original value in the same config file.
This rejects the following value re-definition.
key = value1
...
key = value2
You should rewrite value1 to value2 in this case.
Link: http://lkml.kernel.org/r/158227282199.12842.10110929876059658601.stgit@devnote2
Suggested-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
[ Fixed spelling of arraies to arrays ]
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Diffstat (limited to 'tools/bootconfig/samples')
-rw-r--r-- | tools/bootconfig/samples/bad-samekey.bconf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/bootconfig/samples/bad-samekey.bconf b/tools/bootconfig/samples/bad-samekey.bconf new file mode 100644 index 000000000000..e8d983a4563c --- /dev/null +++ b/tools/bootconfig/samples/bad-samekey.bconf @@ -0,0 +1,6 @@ +# Same key value is not allowed +key { + foo = value + bar = value2 +} +key.foo = value |