From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 14 Aug 2026 09:41:23 +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 1wumXa-002yMg-1y for lore@lore.pengutronix.de; Fri, 14 Aug 2026 09:41:23 +0200 Received: from [127.0.0.1] (helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1wumXU-0000qf-8M; Fri, 14 Aug 2026 09:41:16 +0200 Received: from mx1.white.stw.pengutronix.de ([2a0a:edc0:0:b01:1d::107]) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1wumXL-0000Ss-VQ for ptxdist@pengutronix.de; Fri, 14 Aug 2026 09:41:07 +0200 Received: from drehscheibe.grey.stw.pengutronix.de (drehscheibe.grey.stw.pengutronix.de [IPv6:2a0a:edc0:0:c01:1d::a2]) (Authenticated sender: relay-from-drehscheibe.grey.stw.pengutronix.de) by mx1.white.stw.pengutronix.de (Postfix) with ESMTPSA id E0420201E9F; Fri, 14 Aug 2026 09:41:07 +0200 (CEST) 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 1wumXL-001Q6b-2i; Fri, 14 Aug 2026 09:41:07 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.98.2) (envelope-from ) id 1wumXL-000000000ff-3JLB; Fri, 14 Aug 2026 09:41:07 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Fri, 14 Aug 2026 09:41:07 +0200 Message-ID: <20260814074107.2572-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260715073140.2795953-4-s.pueschel@pengutronix.de> References: <20260715073140.2795953-4-s.pueschel@pengutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] host-rauc: enable composefs support 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: =?UTF-8?q?Sven=20P=C3=BCschel?= 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 a69ea2e1cc2a749dd1b06de69b1c23a93129b041. Michael [sent from post-receive hook] On Fri, 14 Aug 2026 09:41:07 +0200, Sven Püschel wrote: > Unconditionally enable composefs support in the host RAUC package, > as the required composefs dependency is rather small. > This allows the host RAUC to also utilize composefs for artifacts > in update bundles. > > Signed-off-by: Sven Püschel > Message-Id: <20260715073140.2795953-4-s.pueschel@pengutronix.de> > Signed-off-by: Michael Olbrich > > diff --git a/rules/host-rauc.in b/rules/host-rauc.in > index 0dddc742d03e..bc05d05c87dd 100644 > --- a/rules/host-rauc.in > +++ b/rules/host-rauc.in > @@ -3,6 +3,7 @@ > config HOST_RAUC > tristate > default y if ALLYES > + select HOST_COMPOSEFS > select HOST_GLIB > select HOST_MESON > select HOST_OPENSSL > diff --git a/rules/host-rauc.make b/rules/host-rauc.make > index 2d4e1775260c..40f9f436ccbf 100644 > --- a/rules/host-rauc.make > +++ b/rules/host-rauc.make > @@ -21,6 +21,7 @@ HOST_PACKAGES-$(PTXCONF_HOST_RAUC) += host-rauc > HOST_RAUC_CONF_TOOL := meson > HOST_RAUC_CONF_OPT := \ > $(HOST_MESON_OPT) \ > + -Dcomposefs=enabled \ > -Dcreate=true \ > -Ddbusinterfacesdir=/usr/share/dbus-1/interfaces \ > -Ddbuspolicydir=/usr/share/dbus-1/system.d \