]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
scripts: kconfig: merge_config: config files: add a trailing newline
authorAnders Roxell <anders.roxell@linaro.org>
Mon, 5 Aug 2024 09:22:34 +0000 (11:22 +0200)
committerMasahiro Yamada <masahiroy@kernel.org>
Tue, 6 Aug 2024 05:02:12 +0000 (14:02 +0900)
When merging files without trailing newlines at the end of the file, two
config fragments end up at the same row if file1.config doens't have a
trailing newline at the end of the file.

file1.config "CONFIG_1=y"
file2.config "CONFIG_2=y"
./scripts/kconfig/merge_config.sh -m .config file1.config file2.config

This will generate a .config looking like this.
cat .config
...
CONFIG_1=yCONFIG_2=y"

Making sure so we add a newline at the end of every config file that is
passed into the script.

Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
scripts/kconfig/merge_config.sh

index 902eb429b9dbd92e060925fdefd06bf2fdd45b4b..0b7952471c18f6882b8978f839f3170bb41fb01f 100755 (executable)
@@ -167,6 +167,8 @@ for ORIG_MERGE_FILE in $MERGE_LIST ; do
                        sed -i "/$CFG[ =]/d" $MERGE_FILE
                fi
        done
+       # In case the previous file lacks a new line at the end
+       echo >> $TMP_FILE
        cat $MERGE_FILE >> $TMP_FILE
 done