summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Langasek <steve.langasek@canonical.com>2019-02-10 21:09:39 -0800
committerSteve Langasek <steve.langasek@canonical.com>2019-02-10 21:09:39 -0800
commit21efb35cce375d55be127133dc9c20fff97b7a0f (patch)
tree879e0fe0c5491bb4b4736b8f11aa231314b67cfb
parentcebae05a6de75f95603a69afc7b19cde2edf6d2d (diff)
downloadefi-boot-shim-21efb35cce375d55be127133dc9c20fff97b7a0f.tar.gz
efi-boot-shim-21efb35cce375d55be127133dc9c20fff97b7a0f.zip
Enable build for i386.
-rw-r--r--debian/changelog1
-rw-r--r--debian/control2
-rwxr-xr-xdebian/rules3
3 files changed, 5 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 3d16bbd9..1a3a082b 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 <vorlon@debian.org> Sun, 10 Feb 2019 00:15:19 -0800
diff --git a/debian/control b/debian/control
index c26c2de9..2535dcef 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 5b94ec54..a75c1d17 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 \