$KERN_ARCH is used for make arguments. For configs let's use $ARCH-config. This should not break anything since as of now we only have arm64-config for which $ARCH and $KERN_ARCH is same. Signed-off-by: Ritesh Harjani (IBM) <ritesh.list@xxxxxxxxx> --- kernel-build/install-kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel-build/install-kconfig b/kernel-build/install-kconfig index fc2a49a..f5b2b8e 100755 --- a/kernel-build/install-kconfig +++ b/kernel-build/install-kconfig @@ -140,8 +140,8 @@ fi FILES=("$CONFIG_FN") -if test -f "$KCONFIG_DIR/$KERN_ARCH-config" ; then - FILES+=("$KCONFIG_DIR/$KERN_ARCH-config") +if test -f "$KCONFIG_DIR/$ARCH-config" ; then + FILES+=("$KCONFIG_DIR/$ARCH-config") fi if test -n "$DO_BLKTESTS" ; then -- 2.41.0