summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--debian/changelog6
-rwxr-xr-xdebian/rules4
2 files changed, 8 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 325a40f..9994a31 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libdrm (2.4.121-2) unstable; urgency=medium
+
+ * rules: Enable intel on arm64. (Closes: #1070815)
+
+ -- Timo Aaltonen <tjaalton@debian.org> Tue, 11 Jun 2024 18:26:23 +0300
+
libdrm (2.4.121-1~progress7.99u1) graograman-backports; urgency=medium
* Uploading to graograman-backports, remaining changes:
diff --git a/debian/rules b/debian/rules
index 0debff5..2d4f9c0 100755
--- a/debian/rules
+++ b/debian/rules
@@ -32,8 +32,8 @@ else
NOUVEAU = no
endif
-# Intel is only on x86:
-ifneq (,$(filter amd64 i386,$(DEB_HOST_ARCH_CPU)))
+# Intel is only on x86 and arm64:
+ifneq (,$(filter amd64 arm64 i386,$(DEB_HOST_ARCH_CPU)))
ifneq (,$(filter linux hurd,$(DEB_HOST_ARCH_OS)))
INTEL = yes
endif