From patchwork Mon May 29 03:56:35 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ivan Hu X-Patchwork-Id: 1786931 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=fwts-devel-bounces@lists.ubuntu.com; receiver=) Authentication-Results: legolas.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=canonical.com header.i=@canonical.com header.a=rsa-sha256 header.s=20210705 header.b=ArKilcuY; dkim-atps=neutral Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4QV1tZ2v1zz20Q4 for ; Mon, 29 May 2023 13:56:52 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1q3Tzu-0000fI-QP; Mon, 29 May 2023 03:56:42 +0000 Received: from smtp-relay-canonical-1.internal ([10.131.114.174] helo=smtp-relay-canonical-1.canonical.com) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1q3Tzs-0000fB-SS for fwts-devel@lists.ubuntu.com; Mon, 29 May 2023 03:56:40 +0000 Received: from canonical.com (unknown [106.104.136.95]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by smtp-relay-canonical-1.canonical.com (Postfix) with ESMTPSA id A6C1D3F227 for ; Mon, 29 May 2023 03:56:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com; s=20210705; t=1685332600; bh=HVA/RZz+pjhy1XGZdIfzKw9xv6mtIapkrp8ZXm39yEA=; h=From:To:Subject:Date:Message-Id:MIME-Version; b=ArKilcuY03sYKHZkeq4NYKc5Z+wP9N7z1VQKfd310TMX7sT7ODjyyZIA5qlGEdk2N Ne0PgX0LmjpxTnbOkws+eXpm+Y0mJC89EFvXo4vI+a79N6Uu9/MAqet/TdNDq44JoC Syo2438ESOPAFGkHJ5voh8V+vcnifsdl5shB50qtgED/QnyBT2HBSHsVBeV5nd9uN9 tkIxPbVqPrKnuIqO8g5vP9HisJn2TUHp3GZRVBwMOt0t4bJ1IOrQwWlflwm8TTgnkC S4o2bkgjCNntngSVF0ruYgSbXfUdg9WVOEfyNyW1W3kSyp3wwLOq2RL2n7Z9B9bTKZ 7WAhDPUGdkEXw== From: Ivan Hu To: fwts-devel@lists.ubuntu.com Subject: [PATCH] lib: framework: remvoe ARM specific for ebbr Date: Mon, 29 May 2023 11:56:35 +0800 Message-Id: <20230529035635.34941-1-ivan.hu@canonical.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: fwts-devel-bounces@lists.ubuntu.com Sender: "fwts-devel" BugLink: https://bugs.launchpad.net/ubuntu/+source/fwts/+bug/2019757 The EBBR specification is not ARM specific. It applies to RISC-V too. Hence remove the ARM specific for --ebbr description on help options. Signed-off-by: Ivan Hu --- src/lib/src/fwts_framework.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/src/fwts_framework.c b/src/lib/src/fwts_framework.c index 4cf2d663..3aab605e 100644 --- a/src/lib/src/fwts_framework.c +++ b/src/lib/src/fwts_framework.c @@ -139,7 +139,7 @@ static fwts_option fwts_framework_options[] = { { "sbbr", "", 0, "Run ARM SBBR tests." }, { "ifv", "", 0, "Run tests in firmware-vendor modes." }, { "clog", "", 1, "Specify a coreboot logfile dump" }, - { "ebbr", "", 0, "Run ARM EBBR tests." }, + { "ebbr", "", 0, "Run EBBR tests." }, { NULL, NULL, 0, NULL } };