Enable build for i386.

This commit is contained in:
Steve Langasek 2019-02-10 21:09:39 -08:00
parent cebae05a6d
commit 21efb35cce
3 changed files with 5 additions and 1 deletions

1
debian/changelog vendored
View File

@ -3,6 +3,7 @@ shim (15+1533136590.3beb971-2) UNRELEASED; urgency=medium
* Update debian/watch.
* Update VCS to point to salsa.
* Fix debian/rules syntax for arm64 build.
* Enable build for i386.
-- Steve Langasek <vorlon@debian.org> Sun, 10 Feb 2019 00:15:19 -0800

2
debian/control vendored
View File

@ -8,7 +8,7 @@ Vcs-Browser: https://salsa.debian.org/vorlon/shim
Vcs-Git: https://salsa.debian.org/vorlon/shim.git
Package: shim
Architecture: amd64 arm64
Architecture: amd64 arm64 i386
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: boot loader to chain-load signed boot loaders under Secure Boot
This package provides a minimalist boot loader which allows verifying

3
debian/rules vendored
View File

@ -18,6 +18,9 @@ endif
ifeq ($(DEB_HOST_ARCH),arm64)
export EFI_ARCH := aa64
endif
ifeq ($(DEB_HOST_ARCH),i386)
export EFI_ARCH := ia32
endif
COMMON_OPTIONS = \
RELEASE=15 \