From a1794704dbfeffe744706640b490bccc29f3760e Mon Sep 17 00:00:00 2001 From: Andy Whitcroft Date: Fri, 24 Mar 2023 21:50:46 +0000 Subject: [PATCH] UBUNTU: [Packaging] neuter the signing tarball We now produce the signing tarball from the generate package so we no longer this to be produced from the main package. However, in the short term we wish to produce and publish out empty signing tarballs. We will do this until we have cleared out the dists versions. Later we will eliminate the tarball from this package entirely. BugLink: https://bugs.launchpad.net/bugs/2012776 Signed-off-by: Andy Whitcroft --- debian/rules.d/2-binary-arch.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debian/rules.d/2-binary-arch.mk b/debian/rules.d/2-binary-arch.mk index 4c7096acd5a6d..a11aaa5d3bf7d 100644 --- a/debian/rules.d/2-binary-arch.mk +++ b/debian/rules.d/2-binary-arch.mk @@ -153,7 +153,7 @@ else chmod 600 $(pkgdir_bin)/boot/$(instfile)-$(abi_release)-$* endif -ifeq ($(uefi_signed),true) +ifeq ($(uefi_signed),DISABLED) install -d $(signingv) # gzipped kernel images must be decompressed for signing if [[ "$(kernfile)" =~ \.gz$$ ]]; then \ @@ -167,12 +167,12 @@ ifeq ($(uefi_signed),true) $(signingv)/$(instfile)-$(abi_release)-$*.efi; \ fi endif -ifeq ($(opal_signed),true) +ifeq ($(opal_signed),DISABLED) install -d $(signingv) cp -p $(pkgdir_bin)/boot/$(instfile)-$(abi_release)-$* \ $(signingv)/$(instfile)-$(abi_release)-$*.opal; endif -ifeq ($(sipl_signed),true) +ifeq ($(sipl_signed),DISABLED) install -d $(signingv) cp -p $(pkgdir_bin)/boot/$(instfile)-$(abi_release)-$* \ $(signingv)/$(instfile)-$(abi_release)-$*.sipl;