-
Notifications
You must be signed in to change notification settings - Fork 565
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #903 from microsoft/joslobo/merge-for-april-update
Joslobo/merge for april update
- Loading branch information
Showing
266 changed files
with
8,112 additions
and
8,771 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 0 additions & 54 deletions
54
SPECS-SIGNED/grub2-efi-binary-signed-x64/grub2-efi-binary-signed-x64.spec
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
%global debug_package %{nil} | ||
Summary: Signed GRand Unified Bootloader for aarch64 systems | ||
Name: grub2-efi-binary-signed-aarch64 | ||
%ifarch x86_64 | ||
%global buildarch x86_64 | ||
%global grubefiname grubx64.efi | ||
%endif | ||
%ifarch aarch64 | ||
%global buildarch aarch64 | ||
%global grubefiname grubaa64.efi | ||
%endif | ||
Summary: Signed GRand Unified Bootloader for %{buildarch} systems | ||
Name: grub2-efi-binary-signed-%{buildarch} | ||
Version: 2.06~rc1 | ||
Release: 1%{?dist} | ||
Release: 4%{?dist} | ||
License: GPLv3+ | ||
Vendor: Microsoft Corporation | ||
Distribution: Mariner | ||
|
@@ -19,27 +27,43 @@ URL: https://www.gnu.org/software/grub | |
# 2. Sign the desired binary | ||
# 3. Place the unsigned package and signed binary in this spec's folder | ||
# 4. Build this spec | ||
Source0: grub2-efi-unsigned-%{version}-%{release}.aarch64.rpm | ||
Source1: grubaa64.efi | ||
Conflicts: grub2-efi-binary | ||
ExclusiveArch: aarch64 | ||
Source0: grub2-efi-binary-%{version}-%{release}.%{buildarch}.rpm | ||
Source1: %{grubefiname} | ||
|
||
%description | ||
This package contains the GRUB EFI image signed for secure boot. The package is | ||
specifically created for installing on aarch64 systems | ||
specifically created for installing on %{buildarch} systems | ||
|
||
%package -n grub2-efi-binary | ||
Summary: GRand Unified Bootloader | ||
Group: Applications/System | ||
|
||
%description -n grub2-efi-binary | ||
This package contains the GRUB EFI image signed for secure boot. The package is | ||
specifically created for installing on %{buildarch} systems | ||
|
||
%prep | ||
|
||
%build | ||
|
||
%install | ||
mkdir -p %{buildroot}/boot/efi/EFI/BOOT | ||
cp %{SOURCE1} %{buildroot}/boot/efi/EFI/BOOT/grubaa64.efi | ||
cp %{SOURCE1} %{buildroot}/boot/efi/EFI/BOOT/%{grubefiname} | ||
|
||
%files | ||
/boot/efi/EFI/BOOT/grubaa64.efi | ||
%files -n grub2-efi-binary | ||
/boot/efi/EFI/BOOT/%{grubefiname} | ||
|
||
%changelog | ||
* Fri Apr 16 2021 Chris Co <[email protected]> - 2.06~rc1-4 | ||
- Commonize to one spec instead of having a spec per arch | ||
- Define a new grub2-efi-binary subpackage which contains the signed collateral | ||
|
||
* Fri Apr 02 2021 Rachel Menge <[email protected]> - 2.06~rc1-3 | ||
- Update release to be aligned with unsigned version | ||
|
||
* Fri Mar 26 2021 Chris Co <[email protected]> - 2.06~rc1-2 | ||
- Update release to be aligned with unsigned version | ||
|
||
* Wed Mar 10 2021 Chris Co <[email protected]> - 2.06~rc1-1 | ||
- Update to 2.06-rc1 | ||
- Incorporate SBAT data | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.