Blame SPECS/shim-unsigned-x64.spec

5b2885
%global pesign_vre 0.106-1
5b2885
%global gnuefi_vre 1:3.0.5-6
5b2885
%global openssl_vre 1.0.2j
5b2885
5b2885
%global debug_package %{nil}
5b2885
%global __debug_package 1
5b2885
%global _binaries_in_noarch_packages_terminate_build 0
5b2885
%global __debug_install_post %{SOURCE100} x64 ia32
5b2885
%undefine _debuginfo_subpackages
5b2885
5b2885
%global efidir %(eval echo $(grep ^ID= /etc/os-release | sed -e 's/^ID=//' -e 's/rhel/redhat/'))
5b2885
%global shimrootdir %{_datadir}/shim/
5b2885
%global shimversiondir %{shimrootdir}/%{version}-%{release}
5b2885
%global efiarch x64
5b2885
%global shimdir %{shimversiondir}/%{efiarch}
5b2885
%global efialtarch ia32
5b2885
%global shimaltdir %{shimversiondir}/%{efialtarch}
5b2885
5b2885
Name:		shim-unsigned-%{efiarch}
5b2885
Version:	15
5b2885
Release:	2%{?dist}
5b2885
Summary:	First-stage UEFI bootloader
5b2885
ExclusiveArch:	x86_64
5b2885
License:	BSD
5b2885
URL:		https://github.com/rhboot/shim
5b2885
Source0:	https://github.com/rhboot/shim/releases/download/%{version}/shim-%{version}.tar.bz2
64d7ab
Source1:	centossecureboot001.der
5b2885
# currently here's what's in our dbx:
5b2885
# nothing.
5b2885
Source2:	dbx.esl
5b2885
5b2885
Source100:	shim-find-debuginfo.sh
5b2885
5b2885
Patch0001:	0001-Make-sure-that-MOK-variables-always-get-mirrored.patch
5b2885
Patch0002:	0002-mok-fix-the-mirroring-of-RT-variables.patch
5b2885
Patch0003:	0003-mok-consolidate-mirroring-code-in-a-helper-instead-o.patch
5b2885
Patch0004:	0004-Make-VLogError-behave-as-expected.patch
64d7ab
Patch0005:	0005-MokListRT-Fatal.patch
5b2885
5b2885
BuildRequires:	elfutils-libelf-devel
5b2885
BuildRequires:	git openssl-devel openssl
5b2885
BuildRequires:	pesign >= %{pesign_vre}
5b2885
BuildRequires:	gnu-efi >= %{gnuefi_vre}
5b2885
BuildRequires:	gnu-efi-devel >= %{gnuefi_vre}
5b2885
5b2885
# Shim uses OpenSSL, but cannot use the system copy as the UEFI ABI is not
5b2885
# compatible with SysV (there's no red zone under UEFI) and there isn't a
5b2885
# POSIX-style C library.
5b2885
# BuildRequires:	OpenSSL
5b2885
Provides:	bundled(openssl) = %{openssl_vre}
5b2885
5b2885
%global desc \
5b2885
Initial UEFI bootloader that handles chaining to a trusted full \
5b2885
bootloader under secure boot environments.
5b2885
%global debug_desc \
5b2885
This package provides debug information for package %{expand:%%{name}} \
5b2885
Debug information is useful when developing applications that \
5b2885
use this package or when debugging this package.
5b2885
5b2885
%description
5b2885
%desc
5b2885
5b2885
%package -n shim-unsigned-%{efialtarch}
5b2885
Summary:	First-stage UEFI bootloader (unsigned data)
5b2885
Provides:	bundled(openssl) = %{openssl_vre}
5b2885
5b2885
%description -n shim-unsigned-%{efialtarch}
5b2885
%desc
5b2885
5b2885
%package debuginfo
5b2885
Summary:	Debug information for shim-unsigned-%{efiarch}
5b2885
Requires:	%{name}-debugsource = %{version}-%{release}
5b2885
Group:		Development/Debug
5b2885
AutoReqProv:	0
5b2885
BuildArch:	noarch
5b2885
5b2885
%description debuginfo
5b2885
%debug_desc
5b2885
5b2885
%package -n shim-unsigned-%{efialtarch}-debuginfo
5b2885
Summary:	Debug information for shim-unsigned-%{efialtarch}
5b2885
Group:		Development/Debug
5b2885
Requires:	%{name}-debugsource = %{version}-%{release}
5b2885
AutoReqProv:	0
5b2885
BuildArch:	noarch
5b2885
5b2885
%description -n shim-unsigned-%{efialtarch}-debuginfo
5b2885
%debug_desc
5b2885
5b2885
%package debugsource
5b2885
Summary:	Debug Source for shim-unsigned
5b2885
Group:		Development/Debug
5b2885
AutoReqProv:	0
5b2885
BuildArch:	noarch
5b2885
5b2885
%description debugsource
5b2885
%debug_desc
5b2885
5b2885
%prep
5b2885
%autosetup -S git -n shim-%{version}
5b2885
git config --unset user.email
5b2885
git config --unset user.name
5b2885
mkdir build-%{efiarch}
5b2885
mkdir build-%{efialtarch}
5b2885
5b2885
%build
5b2885
COMMITID=$(cat commit)
5b2885
MAKEFLAGS="TOPDIR=.. -f ../Makefile COMMITID=${COMMITID} "
5b2885
MAKEFLAGS+="EFIDIR=%{efidir} PKGNAME=shim RELEASE=%{release} "
5b2885
MAKEFLAGS+="ENABLE_HTTPBOOT=true ENABLE_SHIM_HASH=true "
5b2885
MAKEFLAGS+="%{_smp_mflags}"
5b2885
if [ -f "%{SOURCE1}" ]; then
5b2885
	MAKEFLAGS="$MAKEFLAGS VENDOR_CERT_FILE=%{SOURCE1}"
5b2885
fi
5b2885
if [ -f "%{SOURCE2}" ]; then
5b2885
	MAKEFLAGS="$MAKEFLAGS VENDOR_DBX_FILE=%{SOURCE2}"
5b2885
fi
5b2885
5b2885
cd build-%{efiarch}
5b2885
make ${MAKEFLAGS} DEFAULT_LOADER='\\\\grub%{efiarch}.efi' all
5b2885
cd ..
5b2885
5b2885
cd build-%{efialtarch}
64d7ab
setarch linux32 make ${MAKEFLAGS} ARCH=%{efialtarch} DEFAULT_LOADER='\\\\grub%{efialtarch}.efi' all
5b2885
cd ..
5b2885
5b2885
%install
5b2885
COMMITID=$(cat commit)
5b2885
MAKEFLAGS="TOPDIR=.. -f ../Makefile COMMITID=${COMMITID} "
5b2885
MAKEFLAGS+="EFIDIR=%{efidir} PKGNAME=shim RELEASE=%{release} "
5b2885
MAKEFLAGS+="ENABLE_HTTPBOOT=true ENABLE_SHIM_HASH=true "
5b2885
if [ -f "%{SOURCE1}" ]; then
5b2885
	MAKEFLAGS="$MAKEFLAGS VENDOR_CERT_FILE=%{SOURCE1}"
5b2885
fi
5b2885
if [ -f "%{SOURCE2}" ]; then
5b2885
	MAKEFLAGS="$MAKEFLAGS VENDOR_DBX_FILE=%{SOURCE2}"
5b2885
fi
5b2885
5b2885
cd build-%{efiarch}
5b2885
make ${MAKEFLAGS} \
5b2885
	DEFAULT_LOADER='\\\\grub%{efiarch}.efi' \
5b2885
	DESTDIR=${RPM_BUILD_ROOT} \
5b2885
	install-as-data install-debuginfo install-debugsource
5b2885
cd ..
5b2885
5b2885
cd build-%{efialtarch}
5b2885
setarch linux32 make ${MAKEFLAGS} ARCH=%{efialtarch} \
5b2885
	DEFAULT_LOADER='\\\\grub%{efialtarch}.efi' \
5b2885
	DESTDIR=${RPM_BUILD_ROOT} \
5b2885
	install-as-data install-debuginfo install-debugsource
5b2885
cd ..
5b2885
5b2885
%files
5b2885
%license COPYRIGHT
5b2885
%dir %{shimrootdir}
5b2885
%dir %{shimversiondir}
5b2885
%dir %{shimdir}
5b2885
%{shimdir}/*.efi
5b2885
%{shimdir}/*.hash
5b2885
5b2885
%files -n shim-unsigned-%{efialtarch}
5b2885
%license COPYRIGHT
5b2885
%dir %{shimrootdir}
5b2885
%dir %{shimversiondir}
5b2885
%dir %{shimaltdir}
5b2885
%{shimaltdir}/*.efi
5b2885
%{shimaltdir}/*.hash
5b2885
5b2885
%files debuginfo -f build-%{efiarch}/debugfiles.list
5b2885
5b2885
%files -n shim-unsigned-%{efialtarch}-debuginfo -f build-%{efialtarch}/debugfiles.list
5b2885
5b2885
%files debugsource -f build-%{efiarch}/debugsource.list
5b2885
5b2885
%changelog
64d7ab
* Tue May 7 2019 Fabian Arrotin <arrfab@centos.org> - 15-2.centos
64d7ab
- Rolled in CentOS CA for secureboot
64d7ab
- Added 0005-MokListRT-Fatal.patch to avoid crashing legacy uefi/non SB machines
64d7ab
5b2885
* Tue Feb 12 2019 Peter Jones <pjones@redhat.com> - 15-2
5b2885
- Fix MoK mirroring issue which breaks kdump without intervention
5b2885
  Related: rhbz#1668966
5b2885
5b2885
* Fri Jul 20 2018 Peter Jones <pjones@redhat.com> - 15-1
5b2885
- Update to shim 15
5b2885
5b2885
* Tue Sep 19 2017 Peter Jones <pjones@redhat.com> - 13-3
5b2885
- Actually update to the *real* 13 final.
5b2885
  Related: rhbz#1489604
5b2885
5b2885
* Thu Aug 31 2017 Peter Jones <pjones@redhat.com> - 13-2
5b2885
- Actually update to 13 final.
5b2885
5b2885
* Fri Aug 18 2017 Peter Jones <pjones@redhat.com> - 13-1
5b2885
- Make a new shim-unsigned-x64 package like the shim-unsigned-aarch64 one.
5b2885
- This will (eventually) supersede what's in the "shim" package so we can
5b2885
  make "shim" hold the signed one, which will confuse fewer people.