All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/ipmitool: fix build with gcc 10
@ 2020-08-24 18:24 Fabrice Fontaine
  2020-08-24 20:04 ` Heiko Thiery
  2020-08-24 20:08 ` Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2020-08-24 18:24 UTC (permalink / raw)
  To: buildroot

Fixes:
 - http://autobuild.buildroot.org/results/b6231d601d6051c97d3c2a0ed3065df03648c40d

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 ...g-move-variable-definition-to-c-file.patch | 40 +++++++++++++++++++
 1 file changed, 40 insertions(+)
 create mode 100644 package/ipmitool/0007-hpmfwupg-move-variable-definition-to-c-file.patch

diff --git a/package/ipmitool/0007-hpmfwupg-move-variable-definition-to-c-file.patch b/package/ipmitool/0007-hpmfwupg-move-variable-definition-to-c-file.patch
new file mode 100644
index 0000000000..0b49160ba4
--- /dev/null
+++ b/package/ipmitool/0007-hpmfwupg-move-variable-definition-to-c-file.patch
@@ -0,0 +1,40 @@
+From c3939dac2c060651361fc71516806f9ab8c38901 Mon Sep 17 00:00:00 2001
+From: Vaclav Dolezal <vdolezal@redhat.com>
+Date: Thu, 23 Jan 2020 11:26:32 +0100
+Subject: [PATCH] hpmfwupg: move variable definition to .c file
+
+Signed-off-by: Vaclav Dolezal <vdolezal@redhat.com>
+[Retrieved from:
+https://github.com/ipmitool/ipmitool/commit/c3939dac2c060651361fc71516806f9ab8c38901]
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
+---
+ include/ipmitool/ipmi_hpmfwupg.h | 2 +-
+ lib/ipmi_hpmfwupg.c              | 2 ++
+ 2 files changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/include/ipmitool/ipmi_hpmfwupg.h b/include/ipmitool/ipmi_hpmfwupg.h
+index de65292b..07f597be 100644
+--- a/include/ipmitool/ipmi_hpmfwupg.h
++++ b/include/ipmitool/ipmi_hpmfwupg.h
+@@ -800,7 +800,7 @@ typedef struct _VERSIONINFO {
+ 	char descString[HPMFWUPG_DESC_STRING_LENGTH + 1];
+ }VERSIONINFO, *PVERSIONINFO;
+ 
+-VERSIONINFO gVersionInfo[HPMFWUPG_COMPONENT_ID_MAX];
++extern VERSIONINFO gVersionInfo[HPMFWUPG_COMPONENT_ID_MAX];
+ 
+ #define TARGET_VER (0x01)
+ #define ROLLBACK_VER (0x02)
+diff --git a/lib/ipmi_hpmfwupg.c b/lib/ipmi_hpmfwupg.c
+index 4aa8cecd..d63d2c15 100644
+--- a/lib/ipmi_hpmfwupg.c
++++ b/lib/ipmi_hpmfwupg.c
+@@ -50,6 +50,8 @@
+ 
+ extern int verbose;
+ 
++VERSIONINFO gVersionInfo[HPMFWUPG_COMPONENT_ID_MAX];
++
+ int HpmfwupgUpgrade(struct ipmi_intf *intf, char *imageFilename,
+ 		int activate, int, int);
+ int HpmfwupgValidateImageIntegrity(struct HpmfwupgUpgradeCtx *pFwupgCtx);
-- 
2.28.0

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

* [Buildroot] [PATCH 1/1] package/ipmitool: fix build with gcc 10
  2020-08-24 18:24 [Buildroot] [PATCH 1/1] package/ipmitool: fix build with gcc 10 Fabrice Fontaine
@ 2020-08-24 20:04 ` Heiko Thiery
  2020-08-24 20:08 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Heiko Thiery @ 2020-08-24 20:04 UTC (permalink / raw)
  To: buildroot

Hi,

Am Mo., 24. Aug. 2020 um 20:25 Uhr schrieb Fabrice Fontaine <
fontaine.fabrice@gmail.com>:

> Fixes:
>  -
> http://autobuild.buildroot.org/results/b6231d601d6051c97d3c2a0ed3065df03648c40d
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
>

Tested-by: Heiko Thiery <heiko.thiery@gmail.com>


> ---
>  ...g-move-variable-definition-to-c-file.patch | 40 +++++++++++++++++++
>  1 file changed, 40 insertions(+)
>  create mode 100644
> package/ipmitool/0007-hpmfwupg-move-variable-definition-to-c-file.patch
>
> diff --git
> a/package/ipmitool/0007-hpmfwupg-move-variable-definition-to-c-file.patch
> b/package/ipmitool/0007-hpmfwupg-move-variable-definition-to-c-file.patch
> new file mode 100644
> index 0000000000..0b49160ba4
> --- /dev/null
> +++
> b/package/ipmitool/0007-hpmfwupg-move-variable-definition-to-c-file.patch
> @@ -0,0 +1,40 @@
> +From c3939dac2c060651361fc71516806f9ab8c38901 Mon Sep 17 00:00:00 2001
> +From: Vaclav Dolezal <vdolezal@redhat.com>
> +Date: Thu, 23 Jan 2020 11:26:32 +0100
> +Subject: [PATCH] hpmfwupg: move variable definition to .c file
> +
> +Signed-off-by: Vaclav Dolezal <vdolezal@redhat.com>
> +[Retrieved from:
> +
> https://github.com/ipmitool/ipmitool/commit/c3939dac2c060651361fc71516806f9ab8c38901
> ]
> +Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> +---
> + include/ipmitool/ipmi_hpmfwupg.h | 2 +-
> + lib/ipmi_hpmfwupg.c              | 2 ++
> + 2 files changed, 3 insertions(+), 1 deletion(-)
> +
> +diff --git a/include/ipmitool/ipmi_hpmfwupg.h
> b/include/ipmitool/ipmi_hpmfwupg.h
> +index de65292b..07f597be 100644
> +--- a/include/ipmitool/ipmi_hpmfwupg.h
> ++++ b/include/ipmitool/ipmi_hpmfwupg.h
> +@@ -800,7 +800,7 @@ typedef struct _VERSIONINFO {
> +       char descString[HPMFWUPG_DESC_STRING_LENGTH + 1];
> + }VERSIONINFO, *PVERSIONINFO;
> +
> +-VERSIONINFO gVersionInfo[HPMFWUPG_COMPONENT_ID_MAX];
> ++extern VERSIONINFO gVersionInfo[HPMFWUPG_COMPONENT_ID_MAX];
> +
> + #define TARGET_VER (0x01)
> + #define ROLLBACK_VER (0x02)
> +diff --git a/lib/ipmi_hpmfwupg.c b/lib/ipmi_hpmfwupg.c
> +index 4aa8cecd..d63d2c15 100644
> +--- a/lib/ipmi_hpmfwupg.c
> ++++ b/lib/ipmi_hpmfwupg.c
> +@@ -50,6 +50,8 @@
> +
> + extern int verbose;
> +
> ++VERSIONINFO gVersionInfo[HPMFWUPG_COMPONENT_ID_MAX];
> ++
> + int HpmfwupgUpgrade(struct ipmi_intf *intf, char *imageFilename,
> +               int activate, int, int);
> + int HpmfwupgValidateImageIntegrity(struct HpmfwupgUpgradeCtx *pFwupgCtx);
> --
> 2.28.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20200824/0bf76026/attachment.html>

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

* [Buildroot] [PATCH 1/1] package/ipmitool: fix build with gcc 10
  2020-08-24 18:24 [Buildroot] [PATCH 1/1] package/ipmitool: fix build with gcc 10 Fabrice Fontaine
  2020-08-24 20:04 ` Heiko Thiery
@ 2020-08-24 20:08 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2020-08-24 20:08 UTC (permalink / raw)
  To: buildroot

On Mon, 24 Aug 2020 20:24:38 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Fixes:
>  - http://autobuild.buildroot.org/results/b6231d601d6051c97d3c2a0ed3065df03648c40d
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  ...g-move-variable-definition-to-c-file.patch | 40 +++++++++++++++++++
>  1 file changed, 40 insertions(+)
>  create mode 100644 package/ipmitool/0007-hpmfwupg-move-variable-definition-to-c-file.patch

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

end of thread, other threads:[~2020-08-24 20:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-24 18:24 [Buildroot] [PATCH 1/1] package/ipmitool: fix build with gcc 10 Fabrice Fontaine
2020-08-24 20:04 ` Heiko Thiery
2020-08-24 20:08 ` Thomas Petazzoni

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.