From f24a2f35bfa3c3adb1b11c17ddc1e5ce0d6110fd Mon Sep 17 00:00:00 2001 From: Walter Sonius Date: Thu, 25 Dec 2025 11:33:35 +0100 Subject: [PATCH] mb/asrock: Correct vendor name ASROCK to ASRock Both ASRock H110 Pro BTC+ and ASRock Q1900-ITX have their vendor name spelled as ASRock listed by Memtest86+ when ran on their OEM BIOS. This patch will restore that vendor name casing behaviour when Memtest86+ is run from a corebooted port of these mainboards. Cannot verify for the current mainboards in the repository but this casing is also consistent with the casing used on the vendor website: www.asrock.com Change-Id: Icca8a0c0cba4e093a64cc26996de1fb34ee60089 Signed-off-by: Walter Sonius Reviewed-on: https://review.coreboot.org/c/coreboot/+/90623 Tested-by: build bot (Jenkins) Reviewed-by: Felix Singer --- src/mainboard/asrock/Kconfig | 2 +- src/mainboard/asrock/Kconfig.name | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mainboard/asrock/Kconfig b/src/mainboard/asrock/Kconfig index 3fe439728d..ddbe9f5b0e 100644 --- a/src/mainboard/asrock/Kconfig +++ b/src/mainboard/asrock/Kconfig @@ -12,6 +12,6 @@ endchoice source "src/mainboard/asrock/*/Kconfig" config MAINBOARD_VENDOR - default "ASROCK" + default "ASRock" endif # VENDOR_ASROCK diff --git a/src/mainboard/asrock/Kconfig.name b/src/mainboard/asrock/Kconfig.name index a04cd2707b..c19475ee00 100644 --- a/src/mainboard/asrock/Kconfig.name +++ b/src/mainboard/asrock/Kconfig.name @@ -1,4 +1,4 @@ ## SPDX-License-Identifier: GPL-2.0-only config VENDOR_ASROCK - bool "ASROCK" + bool "ASRock"