diff options
author | Anders Roxell <anders.roxell@linaro.org> | 2024-08-02 14:45:35 +0200 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2024-08-11 17:32:49 -0600 |
commit | fe8340a750002269a3e4178efa1229a88814a656 (patch) | |
tree | 45bdb940d48c9ffbcd24d28bfcf566d4a2e6da03 | |
parent | 53af1a4b6a55b3910a253fce7a0893e6d51952be (diff) |
selftests: rust: config: add trailing newline
If adding multiple config files to the merge_config.sh script and
rust/config is the fist one, then the last config fragment in this file
and the first config fragment in the second file won't be set, since
there isn't a newline in this file, so those two fragements end up at
the same row like:
CONFIG_SAMPLE_RUST_PRINT=mCONFIG_FRAGMENT=y
And non of those will be enabled when running 'olddefconfig' after.
Fixing the issue by adding a newline to the file.
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
Acked-by: Miguel Ojeda <ojeda@kernel.org>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
-rw-r--r-- | tools/testing/selftests/rust/config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/rust/config b/tools/testing/selftests/rust/config index b4002acd40bc..fa06cebae232 100644 --- a/tools/testing/selftests/rust/config +++ b/tools/testing/selftests/rust/config @@ -2,4 +2,4 @@ CONFIG_RUST=y CONFIG_SAMPLES=y CONFIG_SAMPLES_RUST=y CONFIG_SAMPLE_RUST_MINIMAL=m -CONFIG_SAMPLE_RUST_PRINT=m
\ No newline at end of file +CONFIG_SAMPLE_RUST_PRINT=m |