Skip to content

Commit

Permalink
UBUNTU: [Packaging] neuter the signing tarball
Browse files Browse the repository at this point in the history
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 <apw@canonical.com>
  • Loading branch information
Andy Whitcroft authored and Andrea Righi committed Mar 25, 2023
1 parent fc04fdd commit a179470
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions debian/rules.d/2-binary-arch.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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;
Expand Down

0 comments on commit a179470

Please sign in to comment.