From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Thu, 12 Jun 2025 21:32:20 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1uPneu-006bwi-17 for lore@lore.pengutronix.de; Thu, 12 Jun 2025 21:32:20 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1uPneu-0006NV-2A; Thu, 12 Jun 2025 21:32:20 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1uPneW-0005l1-Hn; Thu, 12 Jun 2025 21:31:56 +0200 Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1uPneW-003Ahd-1B; Thu, 12 Jun 2025 21:31:56 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1uPneW-009jid-12; Thu, 12 Jun 2025 21:31:56 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Thu, 12 Jun 2025 21:31:56 +0200 Message-Id: <20250612193156.2320688-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.5 In-Reply-To: <20250526102748.3276782-1-p.zabel@pengutronix.de> References: <20250526102748.3276782-1-p.zabel@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] libdrm: new host recipe X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Philipp Zabel Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 1e49a33745a8c662b023e752ac6c5747e585eded. Michael [sent from post-receive hook] On Thu, 12 Jun 2025 21:31:56 +0200, Philipp Zabel wrote: > Required by host-mesalib to build panfrost tools. > > Signed-off-by: Philipp Zabel > Message-Id: <20250526102748.3276782-1-p.zabel@pengutronix.de> > Signed-off-by: Michael Olbrich > > diff --git a/rules/host-libdrm.in b/rules/host-libdrm.in > new file mode 100644 > index 000000000000..bea3f4fc7cb4 > --- /dev/null > +++ b/rules/host-libdrm.in > @@ -0,0 +1,5 @@ > +## SECTION=hosttools_noprompt > + > +config HOST_LIBDRM > + tristate > + select HOST_MESON > diff --git a/rules/host-libdrm.make b/rules/host-libdrm.make > new file mode 100644 > index 000000000000..6702578b5437 > --- /dev/null > +++ b/rules/host-libdrm.make > @@ -0,0 +1,31 @@ > +# -*-makefile-*- > +# > +# Copyright (C) 2025 by Philipp Zabel > +# > +# For further information about the PTXdist project and license conditions > +# see the README file. > +# > + > +# > +# We provide this package > +# > +HOST_PACKAGES-$(PTXCONF_HOST_LIBDRM) += host-libdrm > + > +# ---------------------------------------------------------------------------- > +# Prepare > +# ---------------------------------------------------------------------------- > + > +HOST_LIBDRM_CONF_TOOL := meson > +HOST_LIBDRM_CONF_OPT := \ > + $(HOST_MESON_OPT) \ > + $(patsubst %,-D%=disabled,$(LIBDRM_BACKENDSC-y)) \ > + $(patsubst %,-D%=disabled,$(LIBDRM_BACKENDSC-)) \ > + -Dcairo-tests=disabled \ > + -Dfreedreno-kgsl=false \ > + -Dman-pages=disabled \ > + -Dvalgrind=disabled \ > + -Dinstall-test-programs=false \ > + -Dtests=false \ > + -Dudev=false > + > +# vim: syntax=make