All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] kvm-xfstests: install-kconfig: Use $ARCH-config instead of $KERN_ARCH-config
@ 2023-10-10 19:16 Ritesh Harjani (IBM)
  2023-10-10 19:16 ` [PATCH 2/2] kvm-xfstests: Add support for ppc64 Ritesh Harjani (IBM)
  2023-10-12 17:28 ` [PATCH 1/2] kvm-xfstests: install-kconfig: Use $ARCH-config instead of $KERN_ARCH-config Theodore Ts'o
  0 siblings, 2 replies; 4+ messages in thread
From: Ritesh Harjani (IBM) @ 2023-10-10 19:16 UTC (permalink / raw)
  To: Theodore Ts'o; +Cc: linux-ext4, Ojaswin Mujoo, Ritesh Harjani (IBM)

$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@gmail.com>
---
 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


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-10-23  2:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-10 19:16 [PATCH 1/2] kvm-xfstests: install-kconfig: Use $ARCH-config instead of $KERN_ARCH-config Ritesh Harjani (IBM)
2023-10-10 19:16 ` [PATCH 2/2] kvm-xfstests: Add support for ppc64 Ritesh Harjani (IBM)
2023-10-12 17:28 ` [PATCH 1/2] kvm-xfstests: install-kconfig: Use $ARCH-config instead of $KERN_ARCH-config Theodore Ts'o
2023-10-23  2:34   ` New archtecture support in xfstests-bld Theodore Ts'o

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.