!44 源码包同源异构问题修复

From: @zhong-wei-shen 
Reviewed-by: @lyn1001 
Signed-off-by: @lyn1001
This commit is contained in:
openeuler-ci-bot 2024-12-10 09:12:14 +00:00 committed by Gitee
commit 75842f017f
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -1,7 +1,7 @@
%define debug_package %{nil} %define debug_package %{nil}
Name: gnu-efi Name: gnu-efi
Version: 3.0.17 Version: 3.0.17
Release: 8 Release: 9
Summary: Development Libraries and headers for EFI Summary: Development Libraries and headers for EFI
Epoch: 1 Epoch: 1
License: BSD License: BSD
@ -12,9 +12,7 @@ Source0: https://sourceforge.net/projects/gnu-efi/files/%{name}-%{version}
Source1: stubs-32.h Source1: stubs-32.h
Patch1: 0001-gnu-efi-add-CHAR16-for-loongarch64.patch Patch1: 0001-gnu-efi-add-CHAR16-for-loongarch64.patch
%ifarch riscv64
Patch2: riscv64-fix-efibind.h-missing-duplicate-types.patch Patch2: riscv64-fix-efibind.h-missing-duplicate-types.patch
%endif
Patch3: fix-build-error-on-loongarch64.patch Patch3: fix-build-error-on-loongarch64.patch
%global efidir %(eval echo $(grep ^ID= /etc/os-release | sed 's/^ID=//')) %global efidir %(eval echo $(grep ^ID= /etc/os-release | sed 's/^ID=//'))
@ -50,7 +48,12 @@ This package contains development headers and libraries for developing
applications that run under EFI (Extensible Firmware Interface). applications that run under EFI (Extensible Firmware Interface).
%prep %prep
%autosetup -n %{name}-%{version} -p1 %setup -n %{name}-%{version}
%patch -P 1 -p1
%ifarch riscv64
%patch -P 2 -p1
%endif
%patch -P 3 -p1
install -d gnuefi/gnu install -d gnuefi/gnu
install -Dp %{SOURCE1} gnuefi/gnu/ install -Dp %{SOURCE1} gnuefi/gnu/
@ -79,6 +82,9 @@ mv %{efiarch}/apps/{route80h.efi,modelist.efi} %{buildroot}/boot/efi/EFI/%{efidi
%{_includedir}/efi %{_includedir}/efi
%changelog %changelog
* Tue Dec 10 2024 shenzhongwei <shenzhongwei@kylinos.cn> - 1:3.0.17-9
- include all patches in the source package.
* Tue Oct 29 2024 Wenlong Zhang <zhangwenlong@loongson.cn> - 1:3.0.17-8 * Tue Oct 29 2024 Wenlong Zhang <zhangwenlong@loongson.cn> - 1:3.0.17-8
- fix build error on loongarch64 - fix build error on loongarch64