diff --git a/debian/changelog b/debian/changelog index 3d16bbd..1a3a082 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Sun, 10 Feb 2019 00:15:19 -0800 diff --git a/debian/control b/debian/control index c26c2de..2535dce 100644 --- a/debian/control +++ b/debian/control @@ -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 diff --git a/debian/rules b/debian/rules index 5b94ec5..a75c1d1 100755 --- a/debian/rules +++ b/debian/rules @@ -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 \