mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-28 00:07:16 +00:00
kernel: if experimental, pull experimental configs
Signed-off-by: Eric Ernst <eric.ernst@intel.com>
This commit is contained in:
parent
74adb72b22
commit
b00b0d9e7d
@ -164,6 +164,7 @@ get_kernel_frag_path() {
|
||||
|
||||
local arch_configs="$(ls ${arch_path}/*.conf)"
|
||||
local common_configs="$(ls ${common_path}/*.conf)"
|
||||
local experimental_configs="$(ls ${common_path}/experimental/*.conf)"
|
||||
|
||||
# These are the strings that the kernel merge_config.sh script kicks out
|
||||
# when it reports an error or warning condition. We search for them in the
|
||||
@ -176,6 +177,9 @@ get_kernel_frag_path() {
|
||||
# handle specific cases, then add the path definition and search/list/cat
|
||||
# here.
|
||||
local all_configs="${common_configs} ${arch_configs}"
|
||||
if [[ ${experimental_kernel} == "true" ]]; then
|
||||
all_configs="${all_configs} ${experimental_configs}"
|
||||
fi
|
||||
|
||||
info "Constructing config from fragments: ${config_path}"
|
||||
local results=$(export KCONFIG_CONFIG=${config_path}; \
|
||||
|
Loading…
Reference in New Issue
Block a user