build.config.msm.common: Add EXTRA_CONFIGS
Add EXTRA_CONFIGS argument to support adding extra build.configs without needing to create a new top-level build.config including all of them. This is useful when you wish to use a particular build.config (i.e. build.config.gki.aarch64) and have generic build.config(s) for providing configuration to build a boot image, each providing the different required ramdisks, etc. Change-Id: I2226b75bbcfd2316d49392977ddb41e5c6bdfd9e Signed-off-by: Elliot Berman <eberman@codeaurora.org>
This commit is contained in:
parent
c51959b445
commit
c172103940
@ -219,3 +219,10 @@ function determine_result_image {
|
||||
fi
|
||||
}
|
||||
append_cmd DIST_CMDS 'determine_result_image'
|
||||
|
||||
if [ -n "${EXTRA_CONFIGS}" ]; then
|
||||
for extra_config in "${EXTRA_CONFIGS}"
|
||||
do
|
||||
. ${extra_config}
|
||||
done
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user