summaryrefslogtreecommitdiffstats
path: root/rules/libdrm.make
diff options
context:
space:
mode:
authorChristian Melki <christian.melki@t2data.com>2022-06-13 14:00:11 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2022-06-17 08:25:25 +0200
commit518208393b24ec14f2d55ae4be49dcf482f7aebc (patch)
tree16fa1b1d862066d3f34c83173696b98d4619693d /rules/libdrm.make
parentf90929c40c13b34d61eb16f8636154554dbd9305 (diff)
downloadptxdist-518208393b24ec14f2d55ae4be49dcf482f7aebc.tar.gz
ptxdist-518208393b24ec14f2d55ae4be49dcf482f7aebc.tar.xz
libdrm: Version bump. 2.4.110 -> 2.4.111
Minor fixes. Notable changes: libkms is now gone. It's use was discouraged from the beginning and I don't think others should require it. Although there might still be strict requirements without actual use left in the wild. * Remove LIBKMS option. * Remove kmstest program, but keep modetest. It should not be dependent on libkms. * Remove repetitive KMS help text, it might mislead user to thinking this is related to libkms. I think it's sufficient to say that libdrm has support for various underlying hardware. Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20220613120011.3462403-1-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/libdrm.make')
-rw-r--r--rules/libdrm.make11
1 files changed, 2 insertions, 9 deletions
diff --git a/rules/libdrm.make b/rules/libdrm.make
index 033192468..175d7169f 100644
--- a/rules/libdrm.make
+++ b/rules/libdrm.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_LIBDRM) += libdrm
#
# Paths and names
#
-LIBDRM_VERSION := 2.4.110
-LIBDRM_MD5 := ef6449de30a41ecdf69dc7ae78e676a9
+LIBDRM_VERSION := 2.4.111
+LIBDRM_MD5 := 6fc1c5b01d8568d10c7d4d84ddd8efa3
LIBDRM := libdrm-$(LIBDRM_VERSION)
LIBDRM_SUFFIX := tar.xz
LIBDRM_URL := http://dri.freedesktop.org/libdrm/$(LIBDRM).$(LIBDRM_SUFFIX)
@@ -58,7 +58,6 @@ LIBDRM_BACKENDSL-y += $(LIBDRM_BACKENDS-y)
LIBDRM_CONF_TOOL := meson
LIBDRM_CONF_OPT := \
$(CROSS_MESON_USR) \
- -Dlibkms=$(call ptx/truefalse, PTXCONF_LIBDRM_LIBKMS) \
$(patsubst %,-D%=true,$(LIBDRM_BACKENDSC-y)) \
$(patsubst %,-D%=false,$(LIBDRM_BACKENDSC-)) \
-Dcairo-tests=false \
@@ -83,17 +82,11 @@ $(STATEDIR)/libdrm.targetinstall:
@$(call install_lib, libdrm, 0, 0, 0644, libdrm)
-ifdef PTXCONF_LIBDRM_LIBKMS
- @$(call install_lib, libdrm, 0, 0, 0644, libkms)
-endif
@$(foreach backend,$(LIBDRM_BACKENDSL-y), \
$(call install_lib, libdrm, 0, 0, 0644, libdrm_$(backend));)
ifdef PTXCONF_LIBDRM_TESTS
-ifdef PTXCONF_LIBDRM_LIBKMS
- @$(call install_copy, libdrm, 0, 0, 0755, -, /usr/bin/kmstest)
@$(call install_copy, libdrm, 0, 0, 0755, -, /usr/bin/modetest)
-endif
@$(call install_copy, libdrm, 0, 0, 0755, -, /usr/bin/modeprint)
@$(call install_copy, libdrm, 0, 0, 0755, -, /usr/bin/vbltest)
ifdef PTXCONF_LIBDRM_ETNAVIV