Skip to content

Commit

Permalink
use MCS verified config if available
Browse files Browse the repository at this point in the history
Signed-off-by: Axel Heider <[email protected]>
  • Loading branch information
axel-h authored and lsf37 committed Jan 9, 2024
1 parent c92fde6 commit dbb9677
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion standalone-kernel/compile_kernel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,14 @@ do_compile_kernel()
MCS)
build_folder="${build_folder}-${variant}"
variant_info=" (${variant})"
extra_params="${extra_params} -DKernelIsMCS=TRUE"
# Use a dedicated config file if available, otherwise just use
# the default config and enable MCS.
try_config_file="configs/${INPUT_ARCH}_MCS_verified.cmake"
if [ -f "${try_config_file}" ]; then
config_file=${try_config_file}
else
extra_params="${extra_params} -DKernelIsMCS=TRUE"
fi
;;
*)
echo "Unknown variant '${variant}'"
Expand Down

0 comments on commit dbb9677

Please sign in to comment.