Add Hygon Support
This commit is contained in:
parent
b8a17c7e3e
commit
44c74a19f9
2 changed files with 33 additions and 2 deletions
28
glibc-Add-Hygon-Support.patch
Normal file
28
glibc-Add-Hygon-Support.patch
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
From 76748aa5bc937b5e750d9335b7a28d0a05127ac4 Mon Sep 17 00:00:00 2001
|
||||||
|
From: lijing22222 <lijing@hygon.cn>
|
||||||
|
Date: Fri, 1 Mar 2024 13:01:40 +0800
|
||||||
|
Subject: [PATCH] Add Hygon Support
|
||||||
|
|
||||||
|
---
|
||||||
|
glibc-2.28/sysdeps/x86/cpu-features.c | 5 +++--
|
||||||
|
1 file changed, 3 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/glibc-2.28/sysdeps/x86/cpu-features.c b/glibc-2.28/sysdeps/x86/cpu-features.c
|
||||||
|
index ea0b64fd..9e3787ef 100644
|
||||||
|
--- a/glibc-2.28/sysdeps/x86/cpu-features.c
|
||||||
|
+++ b/glibc-2.28/sysdeps/x86/cpu-features.c
|
||||||
|
@@ -344,8 +344,9 @@ init_cpu_features (struct cpu_features *cpu_features)
|
||||||
|
cpu_features->feature[index_arch_Prefer_No_AVX512]
|
||||||
|
|= bit_arch_Prefer_No_AVX512;
|
||||||
|
}
|
||||||
|
- /* This spells out "AuthenticAMD". */
|
||||||
|
- else if (ebx == 0x68747541 && ecx == 0x444d4163 && edx == 0x69746e65)
|
||||||
|
+ /* This spells out "AuthenticAMD" or "HygonGenuine". */
|
||||||
|
+ else if ((ebx == 0x68747541 && ecx == 0x444d4163 && edx == 0x69746e65)||(ebx == 0x6f677948 && ecx == 0x656e6975 && edx == 0x6e65476e))
|
||||||
|
+
|
||||||
|
{
|
||||||
|
unsigned int extended_model, stepping;
|
||||||
|
|
||||||
|
--
|
||||||
|
2.17.1
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
%global anolis_release .0.1
|
%global anolis_release .8
|
||||||
%define glibcsrcdir glibc-2.28
|
%define glibcsrcdir glibc-2.28
|
||||||
%define glibcversion 2.28
|
%define glibcversion 2.28
|
||||||
%define glibcrelease 236%{anolis_release}%{?dist}
|
%define glibcrelease 236%{anolis_release}%{?dist}
|
||||||
|
@ -1068,7 +1068,7 @@ Patch2005: glibc-elf-Fix-tst-align3.patch
|
||||||
Patch2006: glibc-Sync-to-lnd-35-for-LoongArch.patch
|
Patch2006: glibc-Sync-to-lnd-35-for-LoongArch.patch
|
||||||
Patch2007: Fix-tst-cancel21.c-to-suit-kernel-struct-sigcontext-.patch
|
Patch2007: Fix-tst-cancel21.c-to-suit-kernel-struct-sigcontext-.patch
|
||||||
Patch2008: glibc-aarch64-Increase-small-and-medium-cases-for-__memcpy.patch
|
Patch2008: glibc-aarch64-Increase-small-and-medium-cases-for-__memcpy.patch
|
||||||
|
Patch2009: glibc-Add-Hygon-Support.patch
|
||||||
##############################################################################
|
##############################################################################
|
||||||
# Continued list of core "glibc" package information:
|
# Continued list of core "glibc" package information:
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
@ -2903,6 +2903,9 @@ fi
|
||||||
%files -f compat-libpthread-nonshared.filelist -n compat-libpthread-nonshared
|
%files -f compat-libpthread-nonshared.filelist -n compat-libpthread-nonshared
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Mar 01 2024 Jing Li <lijing@hygon.cn> - 2.28-236.8
|
||||||
|
- Add Hygon Support
|
||||||
|
|
||||||
* Mon Dec 11 2023 Rongwei Wang <rongwei.wang@linux.alibaba.com> - 2.28-236.0.1.7
|
* Mon Dec 11 2023 Rongwei Wang <rongwei.wang@linux.alibaba.com> - 2.28-236.0.1.7
|
||||||
- elf: Properly align PT_LOAD segments
|
- elf: Properly align PT_LOAD segments
|
||||||
- Sync loongarch64 code to lnd.35. (lixing@loongson.cn)
|
- Sync loongarch64 code to lnd.35. (lixing@loongson.cn)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue