diff -Nru util-linux-2.37.2/debian/changelog util-linux-2.37.2/debian/changelog --- util-linux-2.37.2/debian/changelog 2022-02-21 01:49:57.000000000 +0000 +++ util-linux-2.37.2/debian/changelog 2023-05-19 15:37:24.000000000 +0000 @@ -1,3 +1,10 @@ +util-linux (2.37.2-4ubuntu4) jammy; urgency=low + + * adds arm core support (LP: #2019856) + - /d/p/ubuntu/lp-2019856-add-missing-arm-cores.patch + + -- Heather Lemon Fri, 19 May 2023 15:37:24 +0000 + util-linux (2.37.2-4ubuntu3) jammy; urgency=medium * Revert the change to libsmartcols that outputs shell parsable column diff -Nru util-linux-2.37.2/debian/patches/series util-linux-2.37.2/debian/patches/series --- util-linux-2.37.2/debian/patches/series 2022-02-21 01:33:05.000000000 +0000 +++ util-linux-2.37.2/debian/patches/series 2023-05-19 15:36:04.000000000 +0000 @@ -15,3 +15,4 @@ upstream/CVE-2021-3996-1.patch upstream/CVE-2021-3996-2.patch ubuntu/lp-1961542-Revert-libsmartcols-sanitize-variable-names-on-ex.patch +ubuntu/lp-2019856-add-missing-arm-cores.patch diff -Nru util-linux-2.37.2/debian/patches/ubuntu/lp-2019856-add-missing-arm-cores.patch util-linux-2.37.2/debian/patches/ubuntu/lp-2019856-add-missing-arm-cores.patch --- util-linux-2.37.2/debian/patches/ubuntu/lp-2019856-add-missing-arm-cores.patch 1970-01-01 00:00:00.000000000 +0000 +++ util-linux-2.37.2/debian/patches/ubuntu/lp-2019856-add-missing-arm-cores.patch 2023-05-19 15:37:24.000000000 +0000 @@ -0,0 +1,32 @@ +From 6857cccbb4157d5da34ca98f77a0ac9d68e1e740 Mon Sep 17 00:00:00 2001 +From: ThomasKaiser +Date: Sun, 22 Jan 2023 12:37:33 +0100 +Subject: Add missing ARM-cores + +https://github.com/ThomasKaiser/sbc-bench/commit/37332238c0a8b7c1555dca9d18a7c98362564416#diff-fdfd2a032c64d6e9ba92a3197cad6b26573c7094433d74efa4ae80f44f65aa99 + +Bug-Ubuntu: https://bugs.launchpad.net/bugs/2019856 +Last-Update: 2023-05-19 +--- + sys-utils/lscpu-arm.c | 2 ++ + 1 file changed, 2 insertions(+) + +Index: util-linux-2.37.2/sys-utils/lscpu-arm.c +=================================================================== +--- util-linux-2.37.2.orig/sys-utils/lscpu-arm.c ++++ util-linux-2.37.2/sys-utils/lscpu-arm.c +@@ -77,12 +77,14 @@ static const struct id_part arm_part[] = + { 0xd0d, "Cortex-A77" }, + { 0xd0e, "Cortex-A76AE" }, + { 0xd13, "Cortex-R52" }, ++ { 0xd15, "Cortex-R82" }, + { 0xd20, "Cortex-M23" }, + { 0xd21, "Cortex-M33" }, + { 0xd41, "Cortex-A78" }, + { 0xd42, "Cortex-A78AE" }, + { 0xd4a, "Neoverse-E1" }, + { 0xd4b, "Cortex-A78C" }, ++ { 0xd4f, "Neoverse-V2" }, + { -1, "unknown" }, + }; +