* [Buildroot] [PATCH 1/1] package/igh-ethercat: bump to latest Git commit
@ 2023-07-08 15:03 Bernd Kuhls
2023-07-11 21:29 ` Thomas Petazzoni via buildroot
2023-08-25 13:21 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Bernd Kuhls @ 2023-07-08 15:03 UTC (permalink / raw)
To: buildroot; +Cc: Thomas Petazzoni
Removed_POST_PATCH_HOOKS, not needed anymore due to upstream commit
https://gitlab.com/etherlab.org/ethercat/-/commit/3bc8703f5cf021d21730cd3ac3da839973b914e9
This bump will only fix kernel 6.3-related build errors by upstream
commit
https://gitlab.com/etherlab.org/ethercat/-/commit/e35f35b25c43b9f6fa967b2ae92462034a14bc8d
Fixes:
http://autobuild.buildroot.net/results/ffc/ffc00cc9f949bfc692edc287867ca1e3c86edea1/
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/igh-ethercat/igh-ethercat.hash | 2 +-
package/igh-ethercat/igh-ethercat.mk | 8 +-------
2 files changed, 2 insertions(+), 8 deletions(-)
diff --git a/package/igh-ethercat/igh-ethercat.hash b/package/igh-ethercat/igh-ethercat.hash
index 88548bf23e..67a152c6ae 100644
--- a/package/igh-ethercat/igh-ethercat.hash
+++ b/package/igh-ethercat/igh-ethercat.hash
@@ -1,4 +1,4 @@
# Locally computed
-sha256 eb13a0f7f073ad54589c4f41829d9e995b37b26fbc7fcd05e3adb5e201e6feb4 igh-ethercat-2e2cef6131895336f87c57c18fe78ae01a90d3de.tar.gz
+sha256 7e4d8f3497c0bc0b64a151c0d074349fe7614767563642d6fedb19567eafa1e1 igh-ethercat-f5dc109176400f540a8682a2c9ee20d411d14d61.tar.gz
sha256 231f7edcc7352d7734a96eef0b8030f77982678c516876fcb81e25b32d68564c COPYING
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING.LESSER
diff --git a/package/igh-ethercat/igh-ethercat.mk b/package/igh-ethercat/igh-ethercat.mk
index 1041ba0758..5b618ab54a 100644
--- a/package/igh-ethercat/igh-ethercat.mk
+++ b/package/igh-ethercat/igh-ethercat.mk
@@ -4,7 +4,7 @@
#
################################################################################
-IGH_ETHERCAT_VERSION = 2e2cef6131895336f87c57c18fe78ae01a90d3de
+IGH_ETHERCAT_VERSION = f5dc109176400f540a8682a2c9ee20d411d14d61
IGH_ETHERCAT_SITE = $(call gitlab,etherlab.org,ethercat,$(IGH_ETHERCAT_VERSION))
IGH_ETHERCAT_LICENSE = GPL-2.0 (IgH EtherCAT master), LGPL-2.1 (libraries)
IGH_ETHERCAT_LICENSE_FILES = COPYING COPYING.LESSER
@@ -22,11 +22,5 @@ IGH_ETHERCAT_CONF_OPTS = \
$(if $(BR2_PACKAGE_IGH_ETHERCAT_E1000E),--enable-e1000e,--disable-e1000e) \
$(if $(BR2_PACKAGE_IGH_ETHERCAT_R8169),--enable-r8169,--disable-r8169)
-# Needed to make autoreconf happy
-define IGH_ETHERCAT_CREATE_CHANGELOG
- touch $(@D)/ChangeLog
-endef
-IGH_ETHERCAT_POST_PATCH_HOOKS += IGH_ETHERCAT_CREATE_CHANGELOG
-
$(eval $(kernel-module))
$(eval $(autotools-package))
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/igh-ethercat: bump to latest Git commit
2023-07-08 15:03 [Buildroot] [PATCH 1/1] package/igh-ethercat: bump to latest Git commit Bernd Kuhls
@ 2023-07-11 21:29 ` Thomas Petazzoni via buildroot
2023-08-25 13:21 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-07-11 21:29 UTC (permalink / raw)
To: Bernd Kuhls; +Cc: buildroot
On Sat, 8 Jul 2023 17:03:22 +0200
Bernd Kuhls <bernd@kuhls.net> wrote:
> Removed_POST_PATCH_HOOKS, not needed anymore due to upstream commit
> https://gitlab.com/etherlab.org/ethercat/-/commit/3bc8703f5cf021d21730cd3ac3da839973b914e9
>
> This bump will only fix kernel 6.3-related build errors by upstream
> commit
> https://gitlab.com/etherlab.org/ethercat/-/commit/e35f35b25c43b9f6fa967b2ae92462034a14bc8d
>
> Fixes:
> http://autobuild.buildroot.net/results/ffc/ffc00cc9f949bfc692edc287867ca1e3c86edea1/
>
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
> package/igh-ethercat/igh-ethercat.hash | 2 +-
> package/igh-ethercat/igh-ethercat.mk | 8 +-------
> 2 files changed, 2 insertions(+), 8 deletions(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/igh-ethercat: bump to latest Git commit
2023-07-08 15:03 [Buildroot] [PATCH 1/1] package/igh-ethercat: bump to latest Git commit Bernd Kuhls
2023-07-11 21:29 ` Thomas Petazzoni via buildroot
@ 2023-08-25 13:21 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2023-08-25 13:21 UTC (permalink / raw)
To: Bernd Kuhls; +Cc: Thomas Petazzoni, buildroot
>>>>> "Bernd" == Bernd Kuhls <bernd@kuhls.net> writes:
> Removed_POST_PATCH_HOOKS, not needed anymore due to upstream commit
> https://gitlab.com/etherlab.org/ethercat/-/commit/3bc8703f5cf021d21730cd3ac3da839973b914e9
> This bump will only fix kernel 6.3-related build errors by upstream
> commit
> https://gitlab.com/etherlab.org/ethercat/-/commit/e35f35b25c43b9f6fa967b2ae92462034a14bc8d
> Fixes:
> http://autobuild.buildroot.net/results/ffc/ffc00cc9f949bfc692edc287867ca1e3c86edea1/
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Committed to 2023.05.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-08-25 13:22 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-08 15:03 [Buildroot] [PATCH 1/1] package/igh-ethercat: bump to latest Git commit Bernd Kuhls
2023-07-11 21:29 ` Thomas Petazzoni via buildroot
2023-08-25 13:21 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox