From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 22 Jan 2025 11:47:34 +0100 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 1taYGj-00312R-19 for lore@lore.pengutronix.de; Wed, 22 Jan 2025 11:47:34 +0100 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 1taYGj-0002QW-RO; Wed, 22 Jan 2025 11:47:33 +0100 Received: from ptz.office.stw.pengutronix.de ([2a0a:edc0:0:900:1d::77] helo=[IPv6:::1]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1taYGe-0002QO-A9 for ptxdist@pengutronix.de; Wed, 22 Jan 2025 11:47:28 +0100 Message-ID: <9ac8decf6df6845b53525530d5799f3ea8a7ddc7.camel@pengutronix.de> From: Rouven Czerwinski To: ptxdist@pengutronix.de Date: Wed, 22 Jan 2025 11:47:28 +0100 In-Reply-To: <20250122100813.4059044-1-r.czerwinski@pengutronix.de> References: <20250122100813.4059044-1-r.czerwinski@pengutronix.de> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.54.3 MIME-Version: 1.0 Subject: Re: [ptxdist] [PATCH] platsch: new package 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 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 Hi, On Wed, 2025-01-22 at 11:08 +0100, Rouven Czerwinski wrote: > Add platsch, a simple splash screen application which uses libdrm > during > early boot to display a splash image and than hands over execution to > /sbin/init. For advanced usecases liplatsch is installed as well. >=20 > Signed-off-by: Rouven Czerwinski > --- > =C2=A0rules/platsch.in=C2=A0=C2=A0 |=C2=A0 9 ++++++ > =C2=A0rules/platsch.make | 68 > ++++++++++++++++++++++++++++++++++++++++++++++ > =C2=A02 files changed, 77 insertions(+) > =C2=A0create mode 100644 rules/platsch.in > =C2=A0create mode 100644 rules/platsch.make >=20 > diff --git a/rules/platsch.in b/rules/platsch.in > new file mode 100644 > index 000000000..afb169998 > --- /dev/null > +++ b/rules/platsch.in > @@ -0,0 +1,9 @@ > +## SECTION=3Dmultimedia_tools > + > +config PLATSCH > + tristate > + select HOST_MESON > + select LIBDRM > + prompt "platsch" > + help > + =C2=A0 Splash Screen Application using libdrm. > diff --git a/rules/platsch.make b/rules/platsch.make > new file mode 100644 > index 000000000..6640e5729 > --- /dev/null > +++ b/rules/platsch.make > @@ -0,0 +1,68 @@ > +# -*-makefile-*- > +# > +# Copyright (C) 2025 by Rouven Czerwinski > > +# > +# For further information about the PTXdist project and license > conditions > +# see the README file. > +# > + > +# > +# We provide this package > +# > +PACKAGES-$(PTXCONF_PLATSCH) +=3D platsch > + > +# > +# Paths and names > +# > +PLATSCH_VERSION :=3D v2024.08.0 > +PLATSCH_MD5 :=3D f71c2c60acb8ef221f3cc5612e6a920e > +PLATSCH :=3D platsch-$(PLATSCH_VERSION) > +PLATSCH_SUFFIX :=3D tar.gz > +PLATSCH_URL :=3D > https://github.com/pengutronix/platsch/archive/refs/tags//$(PLATSCH_VERSI= ON).$(PLATSCH_SUFFIX) > +PLATSCH_SOURCE :=3D $(SRCDIR)/$(PLATSCH).$(PLATSCH_SUFFIX) > +PLATSCH_DIR :=3D $(BUILDDIR)/$(PLATSCH) > +PLATSCH_LICENSE :=3D unknown > +PLATSCH_LICENSE_FILES :=3D Yeah, thats no good, sent a v2 with correct license information. > + > +# ------------------------------------------------------------------ > ---------- > +# Prepare > +# ------------------------------------------------------------------ > ---------- > + > +PLATSCH_CONF_ENV :=3D $(CROSS_ENV) > + > +# > +# meson > +# > +PLATSCH_CONF_TOOL :=3D meson > +PLATSCH_CONF_OPT :=3D=C2=A0 \ > + $(CROSS_MESON_USR) > + > +# ------------------------------------------------------------------ > ---------- > +# Target-Install > +# ------------------------------------------------------------------ > ---------- > + > +$(STATEDIR)/platsch.targetinstall: > + @$(call targetinfo) > + > + @$(call install_init, platsch) > + @$(call install_fixup, platsch,PRIORITY,optional) > + @$(call install_fixup, platsch,SECTION,base) > + @$(call install_fixup, platsch,AUTHOR,"Rouven Czerwinski > ") > + @$(call install_fixup, platsch,DESCRIPTION,missing) > + > + @$(call install_lib, platsch, 0, 0, 0755, libplatsch) > + @$(call install_copy, platsch, 0, 0, 0755, -, > /usr/sbin/platsch) > + > + @$(call install_finish, platsch) > + > + @$(call touch) > + > +# ------------------------------------------------------------------ > ---------- > +# Clean > +# ------------------------------------------------------------------ > ---------- > + > +#$(STATEDIR)/platsch.clean: > +# @$(call targetinfo) > +# @$(call clean_pkg, PLATSCH) > + > +# vim: syntax=3Dmake - rcz