Skip to content

Commit b7ed62e

Browse files
committed
Merge branch '1.0-dev' into joslobo/merge-for-april-update
2 parents 8c01807 + ec8da09 commit b7ed62e

File tree

266 files changed

+8112
-8771
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

266 files changed

+8112
-8771
lines changed

.github/workflows/check-license-map.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: Run license map checking script
2626
run: |
27-
python3 ./SPECS/LICENSES-AND-NOTICES/data/license_map.py \
27+
python3 ./toolkit/scripts/licenses/license_map.py \
2828
./SPECS/LICENSES-AND-NOTICES/data/licenses.json \
2929
./SPECS/LICENSES-AND-NOTICES/LICENSES-MAP.md \
3030
./SPECS \

.github/workflows/check_entangled_specs.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,12 @@
99

1010
version_release_matching_groups = [
1111
frozenset([
12-
"SPECS-SIGNED/kernel-signed-x64/kernel-signed-x64.spec",
13-
"SPECS-SIGNED/kernel-signed-aarch64/kernel-signed-aarch64.spec",
12+
"SPECS-SIGNED/kernel-signed/kernel-signed.spec",
1413
"SPECS/kernel/kernel.spec",
1514
"SPECS/kernel-headers/kernel-headers.spec"
1615
]),
1716
frozenset([
18-
"SPECS-SIGNED/grub2-efi-binary-signed-x64/grub2-efi-binary-signed-x64.spec",
19-
"SPECS-SIGNED/grub2-efi-binary-signed-aarch64/grub2-efi-binary-signed-aarch64.spec",
17+
"SPECS-SIGNED/grub2-efi-binary-signed/grub2-efi-binary-signed.spec",
2018
"SPECS/grub2/grub2.spec"
2119
]),
2220
frozenset([

.github/workflows/validate-cg-manifest.sh

+5-3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ ignore_list=" \
1717
kf5 \
1818
mariner-repos \
1919
mariner-rpm-macros \
20+
shim \
2021
moby-buildx \
2122
moby-containerd \
2223
python-markupsafe \
@@ -25,10 +26,11 @@ ignore_list=" \
2526
qt5-rpm-macros \
2627
runc \
2728
grub2-efi-binary-signed-aarch64 \
28-
grub2-efi-binary-signed-x64 \
29+
grub2-efi-binary-signed-x86_64 \
2930
kernel-signed-aarch64 \
30-
kernel-signed-x64 \
31-
verity-read-only-root"
31+
kernel-signed-x86_64 \
32+
verity-read-only-root \
33+
installkernel"
3234

3335
rm -f bad_registrations.txt
3436
rm -rf ./cgmanifest_test_dir/

SPECS-SIGNED/grub2-efi-binary-signed-x64/grub2-efi-binary-signed-x64.spec

-54
This file was deleted.

SPECS-SIGNED/grub2-efi-binary-signed-aarch64/grub2-efi-binary-signed-aarch64.spec SPECS-SIGNED/grub2-efi-binary-signed/grub2-efi-binary-signed.spec

+35-11
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
%global debug_package %{nil}
2-
Summary: Signed GRand Unified Bootloader for aarch64 systems
3-
Name: grub2-efi-binary-signed-aarch64
2+
%ifarch x86_64
3+
%global buildarch x86_64
4+
%global grubefiname grubx64.efi
5+
%endif
6+
%ifarch aarch64
7+
%global buildarch aarch64
8+
%global grubefiname grubaa64.efi
9+
%endif
10+
Summary: Signed GRand Unified Bootloader for %{buildarch} systems
11+
Name: grub2-efi-binary-signed-%{buildarch}
412
Version: 2.06~rc1
5-
Release: 1%{?dist}
13+
Release: 4%{?dist}
614
License: GPLv3+
715
Vendor: Microsoft Corporation
816
Distribution: Mariner
@@ -19,27 +27,43 @@ URL: https://www.gnu.org/software/grub
1927
# 2. Sign the desired binary
2028
# 3. Place the unsigned package and signed binary in this spec's folder
2129
# 4. Build this spec
22-
Source0: grub2-efi-unsigned-%{version}-%{release}.aarch64.rpm
23-
Source1: grubaa64.efi
24-
Conflicts: grub2-efi-binary
25-
ExclusiveArch: aarch64
30+
Source0: grub2-efi-binary-%{version}-%{release}.%{buildarch}.rpm
31+
Source1: %{grubefiname}
2632

2733
%description
2834
This package contains the GRUB EFI image signed for secure boot. The package is
29-
specifically created for installing on aarch64 systems
35+
specifically created for installing on %{buildarch} systems
36+
37+
%package -n grub2-efi-binary
38+
Summary: GRand Unified Bootloader
39+
Group: Applications/System
40+
41+
%description -n grub2-efi-binary
42+
This package contains the GRUB EFI image signed for secure boot. The package is
43+
specifically created for installing on %{buildarch} systems
3044

3145
%prep
3246

3347
%build
3448

3549
%install
3650
mkdir -p %{buildroot}/boot/efi/EFI/BOOT
37-
cp %{SOURCE1} %{buildroot}/boot/efi/EFI/BOOT/grubaa64.efi
51+
cp %{SOURCE1} %{buildroot}/boot/efi/EFI/BOOT/%{grubefiname}
3852

39-
%files
40-
/boot/efi/EFI/BOOT/grubaa64.efi
53+
%files -n grub2-efi-binary
54+
/boot/efi/EFI/BOOT/%{grubefiname}
4155

4256
%changelog
57+
* Fri Apr 16 2021 Chris Co <[email protected]> - 2.06~rc1-4
58+
- Commonize to one spec instead of having a spec per arch
59+
- Define a new grub2-efi-binary subpackage which contains the signed collateral
60+
61+
* Fri Apr 02 2021 Rachel Menge <[email protected]> - 2.06~rc1-3
62+
- Update release to be aligned with unsigned version
63+
64+
* Fri Mar 26 2021 Chris Co <[email protected]> - 2.06~rc1-2
65+
- Update release to be aligned with unsigned version
66+
4367
* Wed Mar 10 2021 Chris Co <[email protected]> - 2.06~rc1-1
4468
- Update to 2.06-rc1
4569
- Incorporate SBAT data

SPECS-SIGNED/kernel-signed-x64/kernel-signed-x64.spec

-193
This file was deleted.

0 commit comments

Comments
 (0)