From 808b766407a8ec227fa01b2166d37b50018f8b8d Mon Sep 17 00:00:00 2001 From: Steffen Eiden Date: Mon, 12 Jan 2026 18:48:51 +0100 Subject: [PATCH] pvattest: Change default firmware hash verification endpoint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change the default firmware hash verification to its final location. For the old one, there is a redirection in place for the foreseeable future. Reviewed-by: Marc Hartmayer Acked-by: Brendon Drew Signed-off-by: Steffen Eiden Signed-off-by: Jan Höppner --- rust/pvattest/src/cmd/check/firmware.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/pvattest/src/cmd/check/firmware.rs b/rust/pvattest/src/cmd/check/firmware.rs index 97e434fd..5f2eb55c 100644 --- a/rust/pvattest/src/cmd/check/firmware.rs +++ b/rust/pvattest/src/cmd/check/firmware.rs @@ -13,8 +13,8 @@ use serde::{Deserialize, Serialize}; use super::{bail_check, CheckState}; use crate::{additional::AttestationResult, cli::CheckOpt}; -const CHECK_DEFAULT_ENDP: &str = "https://www.ibm.com/support/resourcelink/api"; -const VERIFY_API: &str = "firmware-attestation/verify/v1"; +const CHECK_DEFAULT_ENDP: &str = "https://esupport.ibm.com/eccedge/ent/z"; +const VERIFY_API: &str = "hmrs/firmware/attestation/v1/verify"; const TIMEOUT_MAX: Duration = Duration::from_secs(3); const USER_AGENT: &str = "s390-tools-pvattest"; const CONTENT_TYPE: &str = "Content-Type: application/json";