All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/collectd: add ipmi support
@ 2022-01-01 14:03 Fabrice Fontaine
  2022-01-04 16:44 ` Arnout Vandecappelle
  0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2022-01-01 14:03 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine, Asaf Kahlon

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/collectd/Config.in   | 11 +++++++++++
 package/collectd/collectd.mk |  4 +++-
 2 files changed, 14 insertions(+), 1 deletion(-)

diff --git a/package/collectd/Config.in b/package/collectd/Config.in
index 05fb577345..5e5dff6fe1 100644
--- a/package/collectd/Config.in
+++ b/package/collectd/Config.in
@@ -312,6 +312,17 @@ config BR2_PACKAGE_COLLECTD_IPC
 	  IPC counters: semaphores used, number of allocated segments
 	  in shared memory and more.
 
+config BR2_PACKAGE_COLLECTD_IPMI
+	bool "ipmi"
+	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
+	select BR2_PACKAGE_OPENIPMI
+	help
+	  Read hardware sensors from servers using the Intelligent
+	  Platform Management Interface (IPMI).
+
+comment "ipmi needs a toolchain w/ NPTL"
+	depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL
+
 config BR2_PACKAGE_COLLECTD_IPTABLES
 	bool "iptables"
 	select BR2_PACKAGE_IPTABLES
diff --git a/package/collectd/collectd.mk b/package/collectd/collectd.mk
index d01058471d..9d6f630fe3 100644
--- a/package/collectd/collectd.mk
+++ b/package/collectd/collectd.mk
@@ -18,7 +18,7 @@ COLLECTD_SELINUX_MODULES = apache collectd
 # These require unmet dependencies, are fringe, pointless or deprecated
 COLLECTD_PLUGINS_DISABLE = \
 	apple_sensors aquaero ascent barometer dpdkstat email \
-	gmond hddtemp intel_rdt ipmi java lpar \
+	gmond hddtemp intel_rdt java lpar \
 	madwifi mbmon mic multimeter netapp notify_desktop numa \
 	oracle perl pf pinba powerdns python routeros \
 	rrdcached sigrok tape target_v5upgrade teamspeak2 ted \
@@ -88,6 +88,7 @@ COLLECTD_CONF_OPTS += \
 	$(if $(BR2_PACKAGE_COLLECTD_INFINIBAND),--enable-infiniband,--disable-infiniband) \
 	$(if $(BR2_PACKAGE_COLLECTD_INTERFACE),--enable-interface,--disable-interface) \
 	$(if $(BR2_PACKAGE_COLLECTD_IPC),--enable-ipc,--disable-ipc) \
+	$(if $(BR2_PACKAGE_COLLECTD_IPMI),--enable-ipmi,--disable-ipmi) \
 	$(if $(BR2_PACKAGE_COLLECTD_IPTABLES),--enable-iptables,--disable-iptables) \
 	$(if $(BR2_PACKAGE_COLLECTD_IPVS),--enable-ipvs,--disable-ipvs) \
 	$(if $(BR2_PACKAGE_COLLECTD_IRQ),--enable-irq,--disable-irq) \
@@ -174,6 +175,7 @@ COLLECTD_DEPENDENCIES = \
 	$(if $(BR2_PACKAGE_COLLECTD_DPDK_TELEMETRY),jansson) \
 	$(if $(BR2_PACKAGE_COLLECTD_GPS),gpsd) \
 	$(if $(BR2_PACKAGE_COLLECTD_GRPC),grpc) \
+	$(if $(BR2_PACKAGE_COLLECTD_IPMI),openipmi) \
 	$(if $(BR2_PACKAGE_COLLECTD_IPTABLES),iptables) \
 	$(if $(BR2_PACKAGE_COLLECTD_LOGSTASH),yajl) \
 	$(if $(BR2_PACKAGE_COLLECTD_LUA),luainterpreter) \
-- 
2.33.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/collectd: add ipmi support
  2022-01-01 14:03 [Buildroot] [PATCH 1/1] package/collectd: add ipmi support Fabrice Fontaine
@ 2022-01-04 16:44 ` Arnout Vandecappelle
  0 siblings, 0 replies; 2+ messages in thread
From: Arnout Vandecappelle @ 2022-01-04 16:44 UTC (permalink / raw)
  To: Fabrice Fontaine, buildroot; +Cc: Asaf Kahlon



On 01/01/2022 15:03, Fabrice Fontaine wrote:
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

  Applied to master, thanks.

  Regards,
  Arnout

> ---
>   package/collectd/Config.in   | 11 +++++++++++
>   package/collectd/collectd.mk |  4 +++-
>   2 files changed, 14 insertions(+), 1 deletion(-)
> 
> diff --git a/package/collectd/Config.in b/package/collectd/Config.in
> index 05fb577345..5e5dff6fe1 100644
> --- a/package/collectd/Config.in
> +++ b/package/collectd/Config.in
> @@ -312,6 +312,17 @@ config BR2_PACKAGE_COLLECTD_IPC
>   	  IPC counters: semaphores used, number of allocated segments
>   	  in shared memory and more.
>   
> +config BR2_PACKAGE_COLLECTD_IPMI
> +	bool "ipmi"
> +	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
> +	select BR2_PACKAGE_OPENIPMI
> +	help
> +	  Read hardware sensors from servers using the Intelligent
> +	  Platform Management Interface (IPMI).
> +
> +comment "ipmi needs a toolchain w/ NPTL"
> +	depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL
> +
>   config BR2_PACKAGE_COLLECTD_IPTABLES
>   	bool "iptables"
>   	select BR2_PACKAGE_IPTABLES
> diff --git a/package/collectd/collectd.mk b/package/collectd/collectd.mk
> index d01058471d..9d6f630fe3 100644
> --- a/package/collectd/collectd.mk
> +++ b/package/collectd/collectd.mk
> @@ -18,7 +18,7 @@ COLLECTD_SELINUX_MODULES = apache collectd
>   # These require unmet dependencies, are fringe, pointless or deprecated
>   COLLECTD_PLUGINS_DISABLE = \
>   	apple_sensors aquaero ascent barometer dpdkstat email \
> -	gmond hddtemp intel_rdt ipmi java lpar \
> +	gmond hddtemp intel_rdt java lpar \
>   	madwifi mbmon mic multimeter netapp notify_desktop numa \
>   	oracle perl pf pinba powerdns python routeros \
>   	rrdcached sigrok tape target_v5upgrade teamspeak2 ted \
> @@ -88,6 +88,7 @@ COLLECTD_CONF_OPTS += \
>   	$(if $(BR2_PACKAGE_COLLECTD_INFINIBAND),--enable-infiniband,--disable-infiniband) \
>   	$(if $(BR2_PACKAGE_COLLECTD_INTERFACE),--enable-interface,--disable-interface) \
>   	$(if $(BR2_PACKAGE_COLLECTD_IPC),--enable-ipc,--disable-ipc) \
> +	$(if $(BR2_PACKAGE_COLLECTD_IPMI),--enable-ipmi,--disable-ipmi) \
>   	$(if $(BR2_PACKAGE_COLLECTD_IPTABLES),--enable-iptables,--disable-iptables) \
>   	$(if $(BR2_PACKAGE_COLLECTD_IPVS),--enable-ipvs,--disable-ipvs) \
>   	$(if $(BR2_PACKAGE_COLLECTD_IRQ),--enable-irq,--disable-irq) \
> @@ -174,6 +175,7 @@ COLLECTD_DEPENDENCIES = \
>   	$(if $(BR2_PACKAGE_COLLECTD_DPDK_TELEMETRY),jansson) \
>   	$(if $(BR2_PACKAGE_COLLECTD_GPS),gpsd) \
>   	$(if $(BR2_PACKAGE_COLLECTD_GRPC),grpc) \
> +	$(if $(BR2_PACKAGE_COLLECTD_IPMI),openipmi) \
>   	$(if $(BR2_PACKAGE_COLLECTD_IPTABLES),iptables) \
>   	$(if $(BR2_PACKAGE_COLLECTD_LOGSTASH),yajl) \
>   	$(if $(BR2_PACKAGE_COLLECTD_LUA),luainterpreter) \
> 
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-01-04 16:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-01 14:03 [Buildroot] [PATCH 1/1] package/collectd: add ipmi support Fabrice Fontaine
2022-01-04 16:44 ` Arnout Vandecappelle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.