~ubuntu-branches/ubuntu/saucy/sbsigntool/saucy

« back to all changes in this revision

Viewing changes to configure

  • Committer: Package Import Robot
  • Author(s): Steve Langasek
  • Date: 2013-08-23 21:07:17 UTC
  • Revision ID: package-import@ubuntu.com-20130823210717-rpsbissvuhtsnewn
Tags: 0.6-0ubuntu4
* debian/patches/efi_arch_ia32.patch: Use AC_CANONICAL_HOST, not uname -m,
  to determine target. Closes LP: #1066038.
* debian/patches/Align-signature-data-to-8-bytes.patch: Align signature
  data to 8 bytes.  This matches the Microsoft signing implementation,
  which enables us to use sbattach to verify the integrity of the binaries
  returned by the SysDev signing service.
* debian/patches/update_checksums.patch: make sure we update the PE checksum
  field as well, also needed for matching the Microsoft signing
  implementation.
* debian/patches/fix-signature-padding.patch: fix calculation of the
  size of our signature data, so that we don't write out extra zeroes
  when we detach a signature.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5496
5496
fi
5497
5497
 
5498
5498
EFI_ARCH=$(uname -m)
5499
 
case $EFI_ARCH in
5500
 
        i*86)
5501
 
                EFI_ARCH="ia32"
5502
 
                ;;
5503
 
esac
5504
5499
EFI_CPPFLAGS="-I/usr/include/efi -I/usr/include/efi/$EFI_ARCH \
5505
5500
 -DEFI_FUNCTION_WRAPPER"
5506
5501
CPPFLAGS_save="$CPPFLAGS"