From nobody Thu Dec 18 00:45:42 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A79DDCDB46E for ; Thu, 12 Oct 2023 19:33:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1442719AbjJLTdb (ORCPT ); Thu, 12 Oct 2023 15:33:31 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52736 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1442344AbjJLTcl (ORCPT ); Thu, 12 Oct 2023 15:32:41 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C2E75C9 for ; Thu, 12 Oct 2023 12:32:39 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5F39AC433B9; Thu, 12 Oct 2023 19:32:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1697139156; bh=hun9/RUzoWExp8MgqBBAg7pNHjTsuXi2cQ9T4PCTrTE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=SIPjXo00rB0aSsBaRhnubgdJIZtacb1kR9lPi6VoJilYMFY4/vEcdcg7wGm/Y5/Jq IeS3yyeszMpKEzjnogkUU7MbKPa3PrbpPw2eYC9bvq8ExWIO/E0IRxdeElqcjFPA1Q bmKqTXA7XUO1QWWWKqNV2IRh2hPuzgdzVN/qEz7ZMoQMcIwKMNvylPXUrQeHbQeXhF wQevaSsx3q4CGVXfXEi395vLAFVXarpKAYQRegPkuAdoddoc0DALZ51pHHGKROeomb MaDTqdLF9BZPYOTAvwfnzL7Cywe5NykpQPHSTzNC1NFCBGKD8GHNVLlQpoUd8S1TaX yR55HhuAbs1wg== Received: by paulmck-ThinkPad-P17-Gen-1.home (Postfix, from userid 1000) id 6882FCE0FEC; Thu, 12 Oct 2023 12:32:35 -0700 (PDT) From: "Paul E. McKenney" To: linux-kernel@vger.kernel.org Cc: gwml@vger.gnuweeb.org, kernel-team@meta.com, w@lwt.eu, =?UTF-8?q?Thomas=20Wei=C3=9Fschuh?= , Willy Tarreau Subject: [PATCH nolibc 18/19] selftests/nolibc: use qemu-system-ppc64 for ppc64le Date: Thu, 12 Oct 2023 12:32:32 -0700 Message-Id: <20231012193233.207857-18-paulmck@kernel.org> X-Mailer: git-send-email 2.40.1 In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Thomas Wei=C3=9Fschuh qemu-system-ppc64 can handle both big and little endian kernels. While some setups, like Debian, provide a symlink to execute qemu-system-ppc64 as qemu-system-ppc64le, others, like ArchLinux, do not. So always use qemu-system-ppc64 directly. Signed-off-by: Thomas Wei=C3=9Fschuh Link: https://lore.kernel.org/lkml/20231008-nolibc-qemu-ppc64-v1-1-29e2326e= 0420@weissschuh.net/ Acked-by: Willy Tarreau --- tools/testing/selftests/nolibc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testing/selftests/nolibc/Makefile b/tools/testing/selfte= sts/nolibc/Makefile index 891aa396163d..af60e07d3c12 100644 --- a/tools/testing/selftests/nolibc/Makefile +++ b/tools/testing/selftests/nolibc/Makefile @@ -82,7 +82,7 @@ QEMU_ARCH_arm =3D arm QEMU_ARCH_mips =3D mipsel # works with malta_defconfig QEMU_ARCH_ppc =3D ppc QEMU_ARCH_ppc64 =3D ppc64 -QEMU_ARCH_ppc64le =3D ppc64le +QEMU_ARCH_ppc64le =3D ppc64 QEMU_ARCH_riscv =3D riscv64 QEMU_ARCH_s390 =3D s390x QEMU_ARCH_loongarch =3D loongarch64 --=20 2.40.1