mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] kexec-tools: version bump 2.0.16 -> 2.0.20
@ 2020-08-12  7:56 Artur Wiebe
  2020-08-17  6:18 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Artur Wiebe @ 2020-08-12  7:56 UTC (permalink / raw)
  To: ptxdist; +Cc: Artur Wiebe

as kdump was removed from kexec-tools there is no need to select installed binaries

Signed-off-by: Artur Wiebe <artur@4wiebe.de>
---
 rules/kexec-tools.in   | 16 ----------------
 rules/kexec-tools.make | 11 +++--------
 2 files changed, 3 insertions(+), 24 deletions(-)

diff --git a/rules/kexec-tools.in b/rules/kexec-tools.in
index afb1f1d18..9dc7c6e59 100644
--- a/rules/kexec-tools.in
+++ b/rules/kexec-tools.in
@@ -23,20 +23,4 @@ config KEXEC_TOOLS_XEN
 	help
 	  kexec has been ported to xen for the hypervisor and domain 0.
 
-config KEXEC_TOOLS_KEXEC
-	bool
-	prompt "Install kexec"
-	help
-	  FIXME
-
-config KEXEC_TOOLS_KDUMP
-	bool
-	prompt "Install kdump"
-	help
-	  Kdump is a kexec based crash dumping mechansim for Linux.
-	  Its functionality is broken mainly into two components,
-	  user space and kernel space. Kernel space patches are
-	  already part of main line kernel tree. User space component
-	  is nothing but a patch on top of existing kexec tools.
-
 endif
diff --git a/rules/kexec-tools.make b/rules/kexec-tools.make
index 665ea828f..48a782ed7 100644
--- a/rules/kexec-tools.make
+++ b/rules/kexec-tools.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_KEXEC_TOOLS) += kexec-tools
 #
 # Paths and names
 #
-KEXEC_TOOLS_VERSION	:= 2.0.16
-KEXEC_TOOLS_MD5		:= b6bd3e0cc59ae0206ef0197b76a1f0b9
+KEXEC_TOOLS_VERSION	:= 2.0.20
+KEXEC_TOOLS_MD5		:= 3b3ee68064648b1b9e86ad93b1c50644
 KEXEC_TOOLS		:= kexec-tools-$(KEXEC_TOOLS_VERSION)
 KEXEC_TOOLS_SUFFIX	:= tar.xz
 KEXEC_TOOLS_URL		:= $(call ptx/mirror, KERNEL, utils/kernel/kexec/$(KEXEC_TOOLS).$(KEXEC_TOOLS_SUFFIX))
@@ -39,6 +39,7 @@ endif
 #
 KEXEC_TOOLS_AUTOCONF := \
 	$(CROSS_AUTOCONF_USR) \
+	--without-gamecube \
 	--$(call ptx/wwo, PTXCONF_KEXEC_TOOLS_ZLIB)-zlib \
 	--without-lzma \
 	--$(call ptx/wwo, PTXCONF_KEXEC_TOOLS_XEN)-xen \
@@ -57,13 +58,7 @@ $(STATEDIR)/kexec-tools.targetinstall:
 	@$(call install_fixup, kexec-tools,AUTHOR,"Erwin Rol <erwin@erwinrol.com>")
 	@$(call install_fixup, kexec-tools,DESCRIPTION,missing)
 
-ifdef PTXCONF_KEXEC_TOOLS_KEXEC
 	@$(call install_copy, kexec-tools, 0, 0, 0755, -, /usr/sbin/kexec)
-endif
-
-ifdef PTXCONF_KEXEC_TOOLS_KDUMP
-	@$(call install_copy, kexec-tools, 0, 0, 0755, -, /usr/sbin/kdump)
-endif
 
 	@$(call install_finish, kexec-tools)
 
-- 
2.27.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [APPLIED] kexec-tools: version bump 2.0.16 -> 2.0.20
  2020-08-12  7:56 [ptxdist] [PATCH] kexec-tools: version bump 2.0.16 -> 2.0.20 Artur Wiebe
@ 2020-08-17  6:18 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2020-08-17  6:18 UTC (permalink / raw)
  To: ptxdist; +Cc: Artur Wiebe

Thanks, applied as 6f80063f5e6543a01e17c71dda7033c4505ffa21.

Michael

[sent from post-receive hook]

On Mon, 17 Aug 2020 08:18:27 +0200, Artur Wiebe <artur@4wiebe.de> wrote:
> as kdump was removed from kexec-tools there is no need to select installed binaries
> 
> Signed-off-by: Artur Wiebe <artur@4wiebe.de>
> Message-Id: <20200812075644.3878625-1-artur@4wiebe.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/kexec-tools.in b/rules/kexec-tools.in
> index afb1f1d18cf8..9dc7c6e5978b 100644
> --- a/rules/kexec-tools.in
> +++ b/rules/kexec-tools.in
> @@ -23,20 +23,4 @@ config KEXEC_TOOLS_XEN
>  	help
>  	  kexec has been ported to xen for the hypervisor and domain 0.
>  
> -config KEXEC_TOOLS_KEXEC
> -	bool
> -	prompt "Install kexec"
> -	help
> -	  FIXME
> -
> -config KEXEC_TOOLS_KDUMP
> -	bool
> -	prompt "Install kdump"
> -	help
> -	  Kdump is a kexec based crash dumping mechansim for Linux.
> -	  Its functionality is broken mainly into two components,
> -	  user space and kernel space. Kernel space patches are
> -	  already part of main line kernel tree. User space component
> -	  is nothing but a patch on top of existing kexec tools.
> -
>  endif
> diff --git a/rules/kexec-tools.make b/rules/kexec-tools.make
> index 665ea828fbf6..48a782ed764a 100644
> --- a/rules/kexec-tools.make
> +++ b/rules/kexec-tools.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_KEXEC_TOOLS) += kexec-tools
>  #
>  # Paths and names
>  #
> -KEXEC_TOOLS_VERSION	:= 2.0.16
> -KEXEC_TOOLS_MD5		:= b6bd3e0cc59ae0206ef0197b76a1f0b9
> +KEXEC_TOOLS_VERSION	:= 2.0.20
> +KEXEC_TOOLS_MD5		:= 3b3ee68064648b1b9e86ad93b1c50644
>  KEXEC_TOOLS		:= kexec-tools-$(KEXEC_TOOLS_VERSION)
>  KEXEC_TOOLS_SUFFIX	:= tar.xz
>  KEXEC_TOOLS_URL		:= $(call ptx/mirror, KERNEL, utils/kernel/kexec/$(KEXEC_TOOLS).$(KEXEC_TOOLS_SUFFIX))
> @@ -39,6 +39,7 @@ endif
>  #
>  KEXEC_TOOLS_AUTOCONF := \
>  	$(CROSS_AUTOCONF_USR) \
> +	--without-gamecube \
>  	--$(call ptx/wwo, PTXCONF_KEXEC_TOOLS_ZLIB)-zlib \
>  	--without-lzma \
>  	--$(call ptx/wwo, PTXCONF_KEXEC_TOOLS_XEN)-xen \
> @@ -57,13 +58,7 @@ $(STATEDIR)/kexec-tools.targetinstall:
>  	@$(call install_fixup, kexec-tools,AUTHOR,"Erwin Rol <erwin@erwinrol.com>")
>  	@$(call install_fixup, kexec-tools,DESCRIPTION,missing)
>  
> -ifdef PTXCONF_KEXEC_TOOLS_KEXEC
>  	@$(call install_copy, kexec-tools, 0, 0, 0755, -, /usr/sbin/kexec)
> -endif
> -
> -ifdef PTXCONF_KEXEC_TOOLS_KDUMP
> -	@$(call install_copy, kexec-tools, 0, 0, 0755, -, /usr/sbin/kdump)
> -endif
>  
>  	@$(call install_finish, kexec-tools)
>  

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

end of thread, other threads:[~2020-08-17  6:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-12  7:56 [ptxdist] [PATCH] kexec-tools: version bump 2.0.16 -> 2.0.20 Artur Wiebe
2020-08-17  6:18 ` [ptxdist] [APPLIED] " Michael Olbrich

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