From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 22 Jan 2025 13:09:49 +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 1taZYK-0032Wi-1a for lore@lore.pengutronix.de; Wed, 22 Jan 2025 13:09:49 +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 1taZYK-0006uD-R6; Wed, 22 Jan 2025 13:09:48 +0100 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 1taZYC-0006tU-Qa; Wed, 22 Jan 2025 13:09:40 +0100 Received: from pty.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::c5]) 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 1taZYC-001He9-23; Wed, 22 Jan 2025 13:09:40 +0100 Received: from rhi by pty.whiteo.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1taZYC-007iP9-1k; Wed, 22 Jan 2025 13:09:40 +0100 Date: Wed, 22 Jan 2025 13:09:40 +0100 From: Roland Hieber To: Rouven Czerwinski Message-ID: <20250122120940.qridsjl5j3bqfalm@pengutronix.de> References: <20250122104141.286629-1-r.czerwinski@pengutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20250122104141.286629-1-r.czerwinski@pengutronix.de> Subject: Re: [ptxdist] [PATCH] rauc: package bump 1.11.3 -> 1.12 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: 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 On Wed, Jan 22, 2025 at 11:41:41AM +0100, Rouven Czerwinski wrote: > License changes because the copyright was extended for 2024. > > Signed-off-by: Rouven Czerwinski > --- > rules/rauc.make | 8 +++++--- > 1 file changed, 5 insertions(+), 3 deletions(-) > > diff --git a/rules/rauc.make b/rules/rauc.make > index 38577f94d..06b8419c0 100644 > --- a/rules/rauc.make > +++ b/rules/rauc.make > @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_RAUC) += rauc > # > # Paths and names > # > -RAUC_VERSION := 1.11.3 > -RAUC_MD5 := f6822268230e50efb6b2fe3a4db28e2b > +RAUC_VERSION := 1.12 > +RAUC_MD5 := cb95d7491bf65f313357bc268c7bca29 > RAUC := rauc-$(RAUC_VERSION) > RAUC_SUFFIX := tar.xz > RAUC_URL := https://github.com/rauc/rauc/releases/download/v$(RAUC_VERSION)/$(RAUC).$(RAUC_SUFFIX) > @@ -23,7 +23,7 @@ RAUC_SOURCE := $(SRCDIR)/$(RAUC).$(RAUC_SUFFIX) > RAUC_DIR := $(BUILDDIR)/$(RAUC) > RAUC_LICENSE := LGPL-2.1-or-later > RAUC_LICENSE_FILES := \ > - file://README.rst;startline=281;endline=294;md5=d98e15259a1a004b59d4701b3d49cf44 \ > + file://README.rst;startline=281;endline=294;md5=a0262c76b558b6a450c56cae990d129a \ > file://COPYING;md5=4fbd65380cdd255951079008b364516c > > # ---------------------------------------------------------------------------- > @@ -40,6 +40,7 @@ RAUC_CONF_OPT := \ > -Ddbusinterfacesdir=/usr/share/dbus-1/interfaces \ > -Ddbuspolicydir=/usr/share/dbus-1/system.d \ > -Ddbussystemservicedir=/usr/share/dbus-1/system-services \ > + -Dsystemdcatalogdir=/usr/lib/systemd/catalog \ > -Dfuzzing=false \ > -Dgpt=$(call ptx/endis,PTXCONF_RAUC_GPT)d \ > -Dhtmldocs=false \ > @@ -99,6 +100,7 @@ ifdef PTXCONF_INITMETHOD_SYSTEMD > /usr/lib/systemd/system/rauc-mark-good.service) > @$(call install_link, rauc, ../rauc-mark-good.service, \ > /usr/lib/systemd/system/multi-user.target.wants/rauc-mark-good.service) > + @$(call install_copy, rauc, 0, 0, 0644, -, /usr/lib/systemd/catalog/rauc.catalog) Just a small note, the commit introducing the catalog [1] mentions that running "journalctl --update-catalog" is needed to update the binary catalog index. Do we have a way to do that during the build for read-only file systems? [1]: https://github.com/rauc/rauc/commit/432d212f34493277476a Other than that, looks good to me. Reviewed-by: Roland Hieber > else > @$(call install_copy, rauc, 0, 0, 0755, -, \ > /usr/libexec/rauc-service.sh) > -- > 2.39.5 -- Roland Hieber, Pengutronix e.K. | rhi@pengutronix.de | Steuerwalder Str. 21 | https://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |