diff options
author | Josh Boyer <jwboyer@redhat.com> | 2012-02-01 12:01:58 -0500 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2012-03-24 18:25:40 -0400 |
commit | 09280615a0d924b3ab79acbff950f92c3420fd76 (patch) | |
tree | e49fd169ac260000b4da49b8a39d929bf038378b | |
parent | 5d09598d488f081e3be23f885ed65cbbe2d073b5 (diff) |
merge_config.sh: Use the first file as the initial config
Take the first config fragment and use it verbatim as the initial config
set. This avoids running the verification loop for the first file, as
nothing has actually been merged at this point. This significantly
increases performance for large config fragments.
Signed-off-by: Josh Boyer <jwboyer@redhat.com>
Acked-by: John Stultz <john.stultz@linaro.org>
Acked-by: Darren Hart <dvhart@linux.intel.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
-rw-r--r-- | scripts/kconfig/merge_config.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/kconfig/merge_config.sh b/scripts/kconfig/merge_config.sh index ceadf0e150cf..23d738a1acda 100644 --- a/scripts/kconfig/merge_config.sh +++ b/scripts/kconfig/merge_config.sh | |||
@@ -58,12 +58,16 @@ while true; do | |||
58 | esac | 58 | esac |
59 | done | 59 | done |
60 | 60 | ||
61 | 61 | INITFILE=$1 | |
62 | shift; | ||
62 | 63 | ||
63 | MERGE_LIST=$* | 64 | MERGE_LIST=$* |
64 | SED_CONFIG_EXP="s/^\(# \)\{0,1\}\(CONFIG_[a-zA-Z0-9_]*\)[= ].*/\2/p" | 65 | SED_CONFIG_EXP="s/^\(# \)\{0,1\}\(CONFIG_[a-zA-Z0-9_]*\)[= ].*/\2/p" |
65 | TMP_FILE=$(mktemp ./.tmp.config.XXXXXXXXXX) | 66 | TMP_FILE=$(mktemp ./.tmp.config.XXXXXXXXXX) |
66 | 67 | ||
68 | echo "Using $INITFILE as base" | ||
69 | cat $INITFILE > $TMP_FILE | ||
70 | |||
67 | # Merge files, printing warnings on overrided values | 71 | # Merge files, printing warnings on overrided values |
68 | for MERGE_FILE in $MERGE_LIST ; do | 72 | for MERGE_FILE in $MERGE_LIST ; do |
69 | echo "Merging $MERGE_FILE" | 73 | echo "Merging $MERGE_FILE" |