From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 19 Jun 2024 08:03:04 +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 1sJoPQ-008XO7-0y for lore@lore.pengutronix.de; Wed, 19 Jun 2024 08:03:04 +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 1sJoPO-0001fA-QR; Wed, 19 Jun 2024 08:03:02 +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 1sJoPJ-0001eH-Ht; Wed, 19 Jun 2024 08:02:57 +0200 Received: from [2a0a:edc0:2:b01:1d::c5] (helo=pty.whiteo.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sJoPI-003OjQ-VZ; Wed, 19 Jun 2024 08:02:56 +0200 Received: from mol by pty.whiteo.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1sJoPI-002OcH-2r; Wed, 19 Jun 2024 08:02:56 +0200 Date: Wed, 19 Jun 2024 08:02:56 +0200 From: Michael Olbrich To: Roland Hieber Message-ID: Mail-Followup-To: Roland Hieber , distrokit@pengutronix.de, Alexander Dahl References: <20240617094818.1019347-1-rhi@pengutronix.de> <20240617094818.1019347-3-rhi@pengutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240617094818.1019347-3-rhi@pengutronix.de> X-Sent-From: Pengutronix Hildesheim X-URL: http://www.pengutronix.de/ X-Accept-Language: de,en X-Accept-Content-Type: text/plain X-IRC: #ptxdist @freenode Subject: Re: [DistroKit] [PATCH v2 3/4] ptxconfig: create menu for DistroKit-specific rules X-BeenThere: distrokit@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: DistroKit Mailinglist List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Alexander Dahl , distrokit@pengutronix.de Sender: "DistroKit" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: distrokit-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false On Mon, Jun 17, 2024 at 11:48:17AM +0200, Roland Hieber wrote: > This way the main menu doesn't get cluttered up with random recipes. > > Link: https://lore.distrokit.org/distrokit/20240613-whenever-enduring-698a9b93370b@thorsis.com/ > Suggested-by: Alexander Dahl > Signed-off-by: Roland Hieber > --- > New patch in v2. > --- > configs/ptxconfig | 6 +++++- > rules/binary_inst.in | 2 +- > rules/distrokit.in | 5 +++++ > rules/rauc-udev.in | 2 +- > rules/repart-config.in | 2 +- > 5 files changed, 13 insertions(+), 4 deletions(-) > create mode 100644 rules/distrokit.in > > diff --git a/configs/ptxconfig b/configs/ptxconfig > index f5ac373e61d2..fda7d198e6de 100644 > --- a/configs/ptxconfig > +++ b/configs/ptxconfig > @@ -2,8 +2,13 @@ > # Automatically generated file; DO NOT EDIT. > # PTXdist 2024.05.0 > # > + > +# > +# DistroKit > +# > PTXCONF_RAUC_UDEV=y > PTXCONF_REPART_CONFIG=y > +# end of DistroKit > > # > # ------------------------------------ > @@ -207,7 +212,6 @@ PTXCONF_STRACE=y > # > # Root Filesystem > # > -# PTXCONF_BINARY_EXAMPLE is not set Nit: this hunk should be in the next patch. With that, for the whole series: Reviewed-by: Michael Olbrich Michael > # PTXCONF_FAKE_OVERLAYFS is not set > PTXCONF_INITMETHOD=y > # PTXCONF_INITMETHOD_BBINIT is not set > diff --git a/rules/binary_inst.in b/rules/binary_inst.in > index bbb989bed379..92c72baccbbe 100644 > --- a/rules/binary_inst.in > +++ b/rules/binary_inst.in > @@ -1,4 +1,4 @@ > -## SECTION=rootfs > +## SECTION=distrokit > # > # This file is just an example how to install binaries to the root filesystem > # via ptxdist > diff --git a/rules/distrokit.in b/rules/distrokit.in > new file mode 100644 > index 000000000000..559a5bde0ecd > --- /dev/null > +++ b/rules/distrokit.in > @@ -0,0 +1,5 @@ > +## SECTION=project_specific > + > +menu "DistroKit " > +source "generated/distrokit.in" > +endmenu > diff --git a/rules/rauc-udev.in b/rules/rauc-udev.in > index f960c537f58f..d18f1c3197d5 100644 > --- a/rules/rauc-udev.in > +++ b/rules/rauc-udev.in > @@ -1,4 +1,4 @@ > -## SECTION=project_specific > +## SECTION=distrokit > > config RAUC_UDEV > tristate > diff --git a/rules/repart-config.in b/rules/repart-config.in > index db9828f669f2..ea803c015978 100644 > --- a/rules/repart-config.in > +++ b/rules/repart-config.in > @@ -1,4 +1,4 @@ > -## SECTION=project_specific > +## SECTION=distrokit > > config REPART_CONFIG > tristate "repart-config" > -- > 2.39.2 > > > -- Pengutronix e.K. | | Steuerwalder Str. 21 | http://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |