Compare commits

...
Sign in to create a new pull request.

5 commits

Author SHA1 Message Date
Fedora Release Engineering
7a948a856f Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-23 19:43:55 +00:00
Robert Scheck
c7d7b8ae35 Update bundled edk2 to 20250221 (#2340114) 2025-05-17 22:34:20 +02:00
Fedora Release Engineering
6a8cd245fd Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-16 16:40:58 +00:00
Robert Scheck
95602002b8 Upgrade to 1.11 (#2290813) 2024-12-01 01:31:01 +01:00
Fedora Release Engineering
c5e9dc99af Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild 2024-07-17 21:46:08 +00:00
3 changed files with 39 additions and 15 deletions

View file

@ -1,3 +1,3 @@
# efifs
Free software EFI/UEFI standalone file system drivers, based on the GRUB 2.0 read-only drivers: AFFS (Amiga Fast FileSystem), BFS (BeOS FileSystem), btrfs, exFAT, ext2/ext3/ext4, F2FS (experimental), HFS and HFS+ (Mac OS, including the compression support), ISO9660, JFS (Journaled FileSystem), nilfs2, NTFS (including compression support), ReiserFS, SFS (Amiga Smart FileSystem), UDF, UFS/FFS, UFS2/FFS2, XFS, ZFS and more.
Free software EFI/UEFI standalone file system drivers, based on the GRUB 2.0 read-only drivers: AFFS (Amiga Fast FileSystem), BFS (BeOS FileSystem), btrfs, exFAT, ext2/ext3/ext4, EROFS, F2FS, HFS and HFS+ (Mac OS, including compression support), ISO9660, JFS (Journaled FileSystem), nilfs2, NTFS (including compression support), ReiserFS, SFS (Amiga Smart FileSystem), UDF, UFS/FFS, UFS2/FFS2, XFS, ZFS and more.

View file

@ -5,17 +5,17 @@
%global efi_vendor %{name}
# Git commit mentioned at https://github.com/pbatard/efifs
%global grub2_version 2.11-0
%global grub2_commit d9b4638c50b16d4722e66d334e2c1a674b4a45cc
%global grub2_version 2.13-0
%global grub2_commit 6811f6f09d61996a3acbc4fc0414e45964f0e2d9
# Preferrably the latest stable version shipped in Fedora
%global edk2_stable_date 20240524
%global edk2_stable_date 20250221
%global edk2_stable_str edk2-stable%(d=%{edk2_stable_date}; echo ${d:0:6})
Summary: Free software EFI/UEFI standalone file system drivers
Name: efifs
Version: 1.9
Release: 6%{?dist}
Version: 1.11
Release: 4%{?dist}
License: GPL-3.0-or-later
URL: https://efi.akeo.ie/
Source0: https://github.com/pbatard/efifs/archive/v%{version}/%{name}-%{version}.tar.gz
@ -29,6 +29,10 @@ Source2: https://github.com/tianocore/edk2/archive/%{edk2_stable_str}.tar
Source3: efifs-enable.sh
BuildRequires: gcc
BuildRequires: gcc-c++
%if 0%{?rhel} == 8
# GCC >= 9.1 supports -mstack-protector-guard=global on aarch64
BuildRequires: gcc-toolset-12
%endif
BuildRequires: make
BuildRequires: libuuid-devel
BuildRequires: python3
@ -42,15 +46,16 @@ Provides: bundled(grub2-efi-modules) = %{grub2_version}.git%(c=%{grub2_com
Provides: bundled(edk2-tools) = %{edk2_stable_date}
%description
Free software EFI/UEFI standalone file system drivers, based on the GRUB 2.0
read-only drivers: AFFS (Amiga Fast FileSystem), BFS (BeOS FileSystem), btrfs,
exFAT, ext2/ext3/ext4, F2FS (experimental), HFS and HFS+ (Mac OS, including
the compression support), ISO9660, JFS (Journaled FileSystem), nilfs2, NTFS
(including compression support), ReiserFS, SFS (Amiga Smart FileSystem), UDF,
UFS/FFS, UFS2/FFS2, XFS, ZFS and more.
Free software EFI/UEFI standalone file system drivers, based on the GRUB
2.0 read-only drivers: AFFS (Amiga Fast FileSystem), BFS (BeOS FileSystem),
btrfs, exFAT, ext2/ext3/ext4, EROFS, F2FS, HFS and HFS+ (Mac OS, including
compression support), ISO9660, JFS (Journaled FileSystem), nilfs2, NTFS
(including compression support), ReiserFS, SFS (Amiga Smart FileSystem),
UDF, UFS/FFS, UFS2/FFS2, XFS, ZFS and more.
%prep
%setup -q -T -c %{name}-%{version} -a 0 -a 2
mv -f EfiFs-%{version} %{name}-%{version}
cp -p %{SOURCE3} .
pushd %{name}-%{version}
@ -74,6 +79,10 @@ ln -s ../%{name}-%{version} EfiFsPkg
popd
%build
%if 0%{?rhel} == 8
. /opt/rh/gcc-toolset-12/enable
%endif
pushd edk2-%{edk2_stable_str}
export PYTHON_COMMAND=%{__python3}
%make_build -C BaseTools EXTRA_OPTFLAGS="$RPM_OPT_FLAGS" EXTRA_LDFLAGS="$RPM_LD_FLAGS"
@ -102,6 +111,21 @@ install -p -m 0700 edk2-%{edk2_stable_str}/Build/EfiFs/RELEASE_GCC5/%{efi_arch_u
%{efi_esp_dir}/
%changelog
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.11-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Sat May 17 2025 Robert Scheck <robert@fedoraproject.org> 1.11-3
- Update bundled edk2 to 20250221 (#2340114)
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.11-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
* Sun Dec 01 2024 Robert Scheck <robert@fedoraproject.org> 1.11-1
- Upgrade to 1.11 (#2290813)
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.9-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
* Sun Jun 02 2024 Robert Scheck <robert@fedoraproject.org> 1.9-6
- Update bundled edk2 to 20240524 (#2284243)

View file

@ -1,3 +1,3 @@
SHA512 (efifs-1.9.tar.gz) = 5bca4eb4bc72b2a72f68176b4b47bafdbb962afea4b1c6af0e3144d388b2d3d64487b150b86af62edfabe819da8dd92961391fbe67bdf15f84f64875983efa72
SHA512 (edk2-stable202405.tar.gz) = 3bad4c8417b0c9b68fc6b6b85a4b15c5be8daf672177ce66d7b224b1da7a90f643021adbdd6bc96f95417fc8654c4c6b191cd39f6c1be955946360bfa8e2cb5f
SHA512 (grub-d9b4638c50b16d4722e66d334e2c1a674b4a45cc.tar.gz) = 98edf3ec68d342ff2b0bcccfe07e9d7a0f8bf43079ad3dfef250d997b9606154759cfecfd7c450e0ad7b1ce272cf855e05b60f1eb55f50779f34fc748015a4f5
SHA512 (efifs-1.11.tar.gz) = 2cd91abba8e33fe4e73a2da795b00126232c8fbd5da049255cbc3acc9c94d4c5b7067b1a24eb4403d5c384ca93770eb9a038b854f010238b85a63525c4cc0b3e
SHA512 (edk2-stable202502.tar.gz) = 1421b3e14acf6aa51c84cf0a12716990f08815fff631f4657bb9907fd8d620e9fac7794e05c2eed54d5f8966f8e9267d32bf2256237a959bd727629163b8c00d
SHA512 (grub-6811f6f09d61996a3acbc4fc0414e45964f0e2d9.tar.gz) = 73adfc7fd9c13ae40e14049904915e187a7b3ebfbe6a2b5b106df7a650771a384adcd3f907a29370b5194eefeff4011aa90a4d57100ca559c9d87b0c7540e140