All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/rtai: bump to version 5.3
@ 2022-05-02  8:26 James Hilliard
  2022-05-02  8:26 ` [Buildroot] [PATCH 2/2] linux: do not allow selecting RTAI for latest/cip kernels James Hilliard
  2022-05-02 21:55 ` [Buildroot] [PATCH 1/2] package/rtai: bump to version 5.3 Arnout Vandecappelle
  0 siblings, 2 replies; 4+ messages in thread
From: James Hilliard @ 2022-05-02  8:26 UTC (permalink / raw)
  To: buildroot; +Cc: James Hilliard

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
 package/rtai/rtai.hash | 2 +-
 package/rtai/rtai.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/rtai/rtai.hash b/package/rtai/rtai.hash
index f0afafbd7c..f2eb7f33ad 100644
--- a/package/rtai/rtai.hash
+++ b/package/rtai/rtai.hash
@@ -1,2 +1,2 @@
 # Locally computed
-sha256 13669da744a0ba411bdb8e47fa47b6e19171646ae42c8dbb2735d12e555fb1a3 rtai-4.0.1.tar.bz2
+sha256  57acd3ad46cc8f1e01dc21089a24587c59e7328cbac06abb62bb0152de0b9df7  rtai-5.3.tar.bz2
diff --git a/package/rtai/rtai.mk b/package/rtai/rtai.mk
index 90f2cc4c8d..6b309ebf85 100644
--- a/package/rtai/rtai.mk
+++ b/package/rtai/rtai.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-RTAI_VERSION = 4.0.1
+RTAI_VERSION = 5.3
 RTAI_SOURCE = rtai-$(RTAI_VERSION).tar.bz2
 RTAI_SITE = https://www.rtai.org/userfiles/downloads/RTAI
 RTAI_INSTALL_STAGING = YES
-- 
2.25.1

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

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

* [Buildroot] [PATCH 2/2] linux: do not allow selecting RTAI for latest/cip kernels
  2022-05-02  8:26 [Buildroot] [PATCH 1/2] package/rtai: bump to version 5.3 James Hilliard
@ 2022-05-02  8:26 ` James Hilliard
  2022-05-28  6:48   ` Peter Korsgaard
  2022-05-02 21:55 ` [Buildroot] [PATCH 1/2] package/rtai: bump to version 5.3 Arnout Vandecappelle
  1 sibling, 1 reply; 4+ messages in thread
From: James Hilliard @ 2022-05-02  8:26 UTC (permalink / raw)
  To: buildroot; +Cc: James Hilliard

RTAI is only supported on very specific kernel versions that are
different from the latest/cip kernel versions, so we should not
allow selecting RTAI when building with latest/cip kernels.

Fixes:
 - http://autobuild.buildroot.net/results/412/412492e19b41f95ff2445df6b7564cb0fa48873b
 - http://autobuild.buildroot.net/results/32c/32c9ffd8e965eb690ca0b0471e9c1cc16bb2fa66
 - http://autobuild.buildroot.net/results/0bc/0bc178dcb11aa23e5f8bf75c958d8a56c6c38964

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
 linux/Config.ext.in | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/linux/Config.ext.in b/linux/Config.ext.in
index 734a52a533..5b968b0bcb 100644
--- a/linux/Config.ext.in
+++ b/linux/Config.ext.in
@@ -48,6 +48,9 @@ comment "xenomai needs a uClibc or glibc toolchain w/ threads"
 # RTAI
 config BR2_LINUX_KERNEL_EXT_RTAI
 	bool "RTAI Real-time patch"
+	depends on !BR2_LINUX_KERNEL_LATEST_VERSION
+	depends on !BR2_LINUX_KERNEL_LATEST_CIP_VERSION
+	depends on !BR2_LINUX_KERNEL_LATEST_CIP_RT_VERSION
 	select BR2_PACKAGE_RTAI
 	help
 	  RTAI Kernel part.
-- 
2.25.1

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

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

* Re: [Buildroot] [PATCH 1/2] package/rtai: bump to version 5.3
  2022-05-02  8:26 [Buildroot] [PATCH 1/2] package/rtai: bump to version 5.3 James Hilliard
  2022-05-02  8:26 ` [Buildroot] [PATCH 2/2] linux: do not allow selecting RTAI for latest/cip kernels James Hilliard
@ 2022-05-02 21:55 ` Arnout Vandecappelle
  1 sibling, 0 replies; 4+ messages in thread
From: Arnout Vandecappelle @ 2022-05-02 21:55 UTC (permalink / raw)
  To: James Hilliard, buildroot



On 02/05/2022 10:26, James Hilliard wrote:
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>

  Applied both to master, thanks.

  Regards,
  Arnout

> ---
>   package/rtai/rtai.hash | 2 +-
>   package/rtai/rtai.mk   | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/rtai/rtai.hash b/package/rtai/rtai.hash
> index f0afafbd7c..f2eb7f33ad 100644
> --- a/package/rtai/rtai.hash
> +++ b/package/rtai/rtai.hash
> @@ -1,2 +1,2 @@
>   # Locally computed
> -sha256 13669da744a0ba411bdb8e47fa47b6e19171646ae42c8dbb2735d12e555fb1a3 rtai-4.0.1.tar.bz2
> +sha256  57acd3ad46cc8f1e01dc21089a24587c59e7328cbac06abb62bb0152de0b9df7  rtai-5.3.tar.bz2
> diff --git a/package/rtai/rtai.mk b/package/rtai/rtai.mk
> index 90f2cc4c8d..6b309ebf85 100644
> --- a/package/rtai/rtai.mk
> +++ b/package/rtai/rtai.mk
> @@ -4,7 +4,7 @@
>   #
>   ################################################################################
>   
> -RTAI_VERSION = 4.0.1
> +RTAI_VERSION = 5.3
>   RTAI_SOURCE = rtai-$(RTAI_VERSION).tar.bz2
>   RTAI_SITE = https://www.rtai.org/userfiles/downloads/RTAI
>   RTAI_INSTALL_STAGING = YES
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 2/2] linux: do not allow selecting RTAI for latest/cip kernels
  2022-05-02  8:26 ` [Buildroot] [PATCH 2/2] linux: do not allow selecting RTAI for latest/cip kernels James Hilliard
@ 2022-05-28  6:48   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2022-05-28  6:48 UTC (permalink / raw)
  To: James Hilliard; +Cc: buildroot

>>>>> "James" == James Hilliard <james.hilliard1@gmail.com> writes:

 > RTAI is only supported on very specific kernel versions that are
 > different from the latest/cip kernel versions, so we should not
 > allow selecting RTAI when building with latest/cip kernels.

 > Fixes:
 >  - http://autobuild.buildroot.net/results/412/412492e19b41f95ff2445df6b7564cb0fa48873b
 >  - http://autobuild.buildroot.net/results/32c/32c9ffd8e965eb690ca0b0471e9c1cc16bb2fa66
 >  - http://autobuild.buildroot.net/results/0bc/0bc178dcb11aa23e5f8bf75c958d8a56c6c38964

 > Signed-off-by: James Hilliard <james.hilliard1@gmail.com>

Committed to 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-05-28  6:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-02  8:26 [Buildroot] [PATCH 1/2] package/rtai: bump to version 5.3 James Hilliard
2022-05-02  8:26 ` [Buildroot] [PATCH 2/2] linux: do not allow selecting RTAI for latest/cip kernels James Hilliard
2022-05-28  6:48   ` Peter Korsgaard
2022-05-02 21:55 ` [Buildroot] [PATCH 1/2] package/rtai: bump to version 5.3 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.