]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
Add Microsoft as vendor and Cobalt 100 core
authorThomas Kaiser <ThomasKaiser@users.noreply.github.com>
Sun, 18 Feb 2024 23:16:54 +0000 (00:16 +0100)
committerGitHub <noreply@github.com>
Sun, 18 Feb 2024 23:16:54 +0000 (00:16 +0100)
https://lore.kernel.org/linux-arm-kernel/b99a7196-011e-4f08-83ec-e63a690ab919@linux.microsoft.com/T/

sys-utils/lscpu-arm.c

index 24bbeb23da8b70cde740fb6775315d4ece9b7d56..511ab281cd80a6be9130aaf4a540611857ebebb9 100644 (file)
@@ -273,6 +273,11 @@ static const struct id_part ft_part[] = {
     { -1, "unknown" },
 };
 
+static const struct id_part ms_part[] = {
+    { 0xd49, "Azure-Cobalt-100" },
+    { -1, "unknown" },
+};
+
 static const struct id_part unknown_part[] = {
     { -1, "unknown" },
 };
@@ -300,6 +305,7 @@ static const struct hw_impl hw_implementer[] = {
     { 0x61, apple_part,   "Apple" },
     { 0x66, faraday_part, "Faraday" },
     { 0x69, intel_part,   "Intel" },
+    { 0x6d, ms_part,      "Microsoft" },
     { 0x70, ft_part,      "Phytium" },
     { 0xc0, ampere_part,  "Ampere" },
     { -1,   unknown_part, "unknown" },