diff options
| author | Karel Zak <kzak@redhat.com> | 2025-12-01 11:10:11 +0100 |
|---|---|---|
| committer | Karel Zak <kzak@redhat.com> | 2025-12-01 11:10:11 +0100 |
| commit | 363f155a66dc5187248a263ad3fbb857443e5dc8 (patch) | |
| tree | c93ddeedfb534358bb67d652a30b5470feb6d886 | |
| parent | ab9f074397eee7c9db308dad1b40125f1e1c9f2c (diff) | |
| parent | 4a1d1e33b56beccfb70d4f10e4ea1a5b91a5af2f (diff) | |
| download | util-linux-363f155a66dc5187248a263ad3fbb857443e5dc8.tar.gz | |
Merge branch 'master' of https://github.com/jthackray/util-linux
* 'master' of https://github.com/jthackray/util-linux:
lscpu: Add a few missing Arm CPU identifiers
| -rw-r--r-- | sys-utils/lscpu-arm.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys-utils/lscpu-arm.c b/sys-utils/lscpu-arm.c index b5cdd69a28..563ececfd8 100644 --- a/sys-utils/lscpu-arm.c +++ b/sys-utils/lscpu-arm.c @@ -23,6 +23,9 @@ struct id_part { }; static const struct id_part arm_part[] = { + { 0xb36, "ARM1136j-s" }, + { 0xb56, "ARM1156t2-s" }, + { 0xb76, "ARM1176jz-s" }, { 0x810, "ARM810" }, { 0x920, "ARM920" }, { 0x922, "ARM922" }, @@ -69,10 +72,12 @@ static const struct id_part arm_part[] = { { 0xd0d, "Cortex-A77" }, { 0xd0e, "Cortex-A76AE" }, { 0xd13, "Cortex-R52" }, + { 0xd14, "Cortex-R82AE" }, { 0xd15, "Cortex-R82" }, { 0xd16, "Cortex-R52+" }, { 0xd20, "Cortex-M23" }, { 0xd21, "Cortex-M33" }, + { 0xd24, "Cortex-M52" }, { 0xd22, "Cortex-M55" }, { 0xd23, "Cortex-M85" }, { 0xd40, "Neoverse-V1" }, |
