mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 1/2] rauc: pin remaining configure options
@ 2022-06-16 14:18 Enrico Jorns
  2022-06-16 14:18 ` [ptxdist] [PATCH 2/2] host-rauc: " Enrico Jorns
  2022-06-20  6:19 ` [ptxdist] [APPLIED] rauc: " Michael Olbrich
  0 siblings, 2 replies; 4+ messages in thread
From: Enrico Jorns @ 2022-06-16 14:18 UTC (permalink / raw)
  To: ptxdist; +Cc: ejo, jlu

Done using scripts/configure_helper.py --pkg rauc

Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
---
 rules/rauc.make | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/rules/rauc.make b/rules/rauc.make
index f74f6b62c..41b76de7c 100644
--- a/rules/rauc.make
+++ b/rules/rauc.make
@@ -39,15 +39,20 @@ RAUC_CONF_OPT	:= \
 	$(CROSS_AUTOCONF_USR) \
 	--enable-debug=info \
 	$(GLOBAL_LARGE_FILE_OPTION) \
+	--enable-compile-warnings=yes \
+	--disable-Werror \
 	--disable-code-coverage \
 	--disable-valgrind \
 	--$(call ptx/endis,PTXCONF_RAUC_SERVICE)-service \
+	--disable-create \
 	--$(call ptx/endis,PTXCONF_RAUC_NETWORK)-network \
 	--$(call ptx/endis,PTXCONF_RAUC_JSON)-json \
 	--$(call ptx/endis,PTXCONF_RAUC_GPT)-gpt \
+	--with-gcov=gcov \
 	--with-systemdunitdir=/usr/lib/systemd/system \
 	--with-dbuspolicydir=/usr/share/dbus-1/system.d \
-	--with-dbussystemservicedir=/usr/share/dbus-1/system-services
+	--with-dbussystemservicedir=/usr/share/dbus-1/system-services \
+	--with-dbusinterfacesdir=/usr/share/dbus-1/interfaces
 
 $(STATEDIR)/rauc.prepare:
 	@$(call targetinfo)
-- 
2.30.2




^ permalink raw reply	[flat|nested] 4+ messages in thread

* [ptxdist] [PATCH 2/2] host-rauc: pin remaining configure options
  2022-06-16 14:18 [ptxdist] [PATCH 1/2] rauc: pin remaining configure options Enrico Jorns
@ 2022-06-16 14:18 ` Enrico Jorns
  2022-06-20  6:19   ` [ptxdist] [APPLIED] " Michael Olbrich
  2022-06-20  6:19 ` [ptxdist] [APPLIED] rauc: " Michael Olbrich
  1 sibling, 1 reply; 4+ messages in thread
From: Enrico Jorns @ 2022-06-16 14:18 UTC (permalink / raw)
  To: ptxdist; +Cc: ejo, jlu

Unset options mostly copied from rauc.make with the following specifics:

--enable-create: required for the host tool to generate bundles
--disable-gpt: only relevant for target RAUC to update boot partitions

Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
---
 rules/host-rauc.make | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/rules/host-rauc.make b/rules/host-rauc.make
index c78a518f6..e5190bb8e 100644
--- a/rules/host-rauc.make
+++ b/rules/host-rauc.make
@@ -21,10 +21,21 @@ HOST_PACKAGES-$(PTXCONF_HOST_RAUC) += host-rauc
 HOST_RAUC_CONF_TOOL	:= autoconf
 HOST_RAUC_CONF_OPT	:= \
 	$(HOST_AUTOCONF) \
+	--enable-debug=info \
+	--enable-largefile \
+	--enable-compile-warnings=yes \
+	--disable-Werror \
 	--disable-code-coverage \
 	--disable-valgrind \
 	--disable-service \
+	--enable-create \
 	--disable-network \
-	--disable-json
+	--disable-json \
+	--disable-gpt \
+	--with-gcov=gcov \
+	--with-systemdunitdir=/usr/lib/systemd/system \
+	--with-dbuspolicydir=/usr/share/dbus-1/system.d \
+	--with-dbussystemservicedir=/usr/share/dbus-1/system-services \
+	--with-dbusinterfacesdir=/usr/share/dbus-1/interfaces
 
 # vim: syntax=make
-- 
2.30.2




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [ptxdist] [APPLIED] rauc: pin remaining configure options
  2022-06-16 14:18 [ptxdist] [PATCH 1/2] rauc: pin remaining configure options Enrico Jorns
  2022-06-16 14:18 ` [ptxdist] [PATCH 2/2] host-rauc: " Enrico Jorns
@ 2022-06-20  6:19 ` Michael Olbrich
  1 sibling, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2022-06-20  6:19 UTC (permalink / raw)
  To: ptxdist; +Cc: Enrico Jorns

Thanks, applied as 160e47aee53d93adaf9cf5cc6f2484f4007255ee.

Michael

[sent from post-receive hook]

On Mon, 20 Jun 2022 08:19:54 +0200, Enrico Jorns <ejo@pengutronix.de> wrote:
> Done using scripts/configure_helper.py --pkg rauc
> 
> Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
> Message-Id: <20220616141834.464961-1-ejo@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/rauc.make b/rules/rauc.make
> index f74f6b62c0cb..41b76de7ca7e 100644
> --- a/rules/rauc.make
> +++ b/rules/rauc.make
> @@ -39,15 +39,20 @@ RAUC_CONF_OPT	:= \
>  	$(CROSS_AUTOCONF_USR) \
>  	--enable-debug=info \
>  	$(GLOBAL_LARGE_FILE_OPTION) \
> +	--enable-compile-warnings=yes \
> +	--disable-Werror \
>  	--disable-code-coverage \
>  	--disable-valgrind \
>  	--$(call ptx/endis,PTXCONF_RAUC_SERVICE)-service \
> +	--disable-create \
>  	--$(call ptx/endis,PTXCONF_RAUC_NETWORK)-network \
>  	--$(call ptx/endis,PTXCONF_RAUC_JSON)-json \
>  	--$(call ptx/endis,PTXCONF_RAUC_GPT)-gpt \
> +	--with-gcov=gcov \
>  	--with-systemdunitdir=/usr/lib/systemd/system \
>  	--with-dbuspolicydir=/usr/share/dbus-1/system.d \
> -	--with-dbussystemservicedir=/usr/share/dbus-1/system-services
> +	--with-dbussystemservicedir=/usr/share/dbus-1/system-services \
> +	--with-dbusinterfacesdir=/usr/share/dbus-1/interfaces
>  
>  $(STATEDIR)/rauc.prepare:
>  	@$(call targetinfo)



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [ptxdist] [APPLIED] host-rauc: pin remaining configure options
  2022-06-16 14:18 ` [ptxdist] [PATCH 2/2] host-rauc: " Enrico Jorns
@ 2022-06-20  6:19   ` Michael Olbrich
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2022-06-20  6:19 UTC (permalink / raw)
  To: ptxdist; +Cc: Enrico Jorns

Thanks, applied as 47f0f2c4076bc4d7b61cbd6191fdd7601e4cc0b1.

Michael

[sent from post-receive hook]

On Mon, 20 Jun 2022 08:19:55 +0200, Enrico Jorns <ejo@pengutronix.de> wrote:
> Unset options mostly copied from rauc.make with the following specifics:
> 
> --enable-create: required for the host tool to generate bundles
> --disable-gpt: only relevant for target RAUC to update boot partitions
> 
> Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
> Message-Id: <20220616141834.464961-2-ejo@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/host-rauc.make b/rules/host-rauc.make
> index c78a518f65d3..e5190bb8e60a 100644
> --- a/rules/host-rauc.make
> +++ b/rules/host-rauc.make
> @@ -21,10 +21,21 @@ HOST_PACKAGES-$(PTXCONF_HOST_RAUC) += host-rauc
>  HOST_RAUC_CONF_TOOL	:= autoconf
>  HOST_RAUC_CONF_OPT	:= \
>  	$(HOST_AUTOCONF) \
> +	--enable-debug=info \
> +	--enable-largefile \
> +	--enable-compile-warnings=yes \
> +	--disable-Werror \
>  	--disable-code-coverage \
>  	--disable-valgrind \
>  	--disable-service \
> +	--enable-create \
>  	--disable-network \
> -	--disable-json
> +	--disable-json \
> +	--disable-gpt \
> +	--with-gcov=gcov \
> +	--with-systemdunitdir=/usr/lib/systemd/system \
> +	--with-dbuspolicydir=/usr/share/dbus-1/system.d \
> +	--with-dbussystemservicedir=/usr/share/dbus-1/system-services \
> +	--with-dbusinterfacesdir=/usr/share/dbus-1/interfaces
>  
>  # vim: syntax=make



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-06-20  6:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-16 14:18 [ptxdist] [PATCH 1/2] rauc: pin remaining configure options Enrico Jorns
2022-06-16 14:18 ` [ptxdist] [PATCH 2/2] host-rauc: " Enrico Jorns
2022-06-20  6:19   ` [ptxdist] [APPLIED] " Michael Olbrich
2022-06-20  6:19 ` [ptxdist] [APPLIED] rauc: " Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox