[PATCH v2] sparc: Fix mistakenly cleared PSR[EF] bit.

2019-06-06 Thread Maksim E. Kozlov
--- cpukit/score/cpu/sparc/cpu_asm.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpukit/score/cpu/sparc/cpu_asm.S b/cpukit/score/cpu/sparc/cpu_asm.S index 2f3ad24510..d5afd5f7b0 100644 --- a/cpukit/score/cpu/sparc/cpu_asm.S +++ b/cpukit/score/cpu/sparc/cpu_asm.S @@ -681,7

[PATCH 0/2] sparc: Two problems in lazy floating point switching

2019-06-05 Thread Maksim E. Kozlov
hough interrupted task was a floating point task? The second patch about this - EF bit is leared in delayed slot regardless of branch is done or not. These two patches resolve described problems and I hope they both are correct. Any comments are welcome. Maksim E. Kozlov (2): sparc: Fix m

[PATCH] rsb: Add '--patchdir' option description

2018-02-20 Thread Maksim E. Kozlov
According to commit d30be3129e9681a74efc80ce241aaf3c3a5b0efe in rtems-source-builder repo. Signed-off-by: Maksim E. Kozlov <maksim.e.koz...@gmail.com> --- rsb/commands.rst | 7 +++ 1 file changed, 7 insertions(+) diff --git a/rsb/commands.rst b/rsb/commands.rst index 3ef7772..ab338c1

[PATCH] sb: Add option to set location of the patches directory

2018-02-16 Thread Maksim E. Kozlov
Signed-off-by: Maksim E. Kozlov <maksim.e.koz...@gmail.com> --- source-builder/sb/options.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source-builder/sb/options.py b/source-builder/sb/options.py index 485..59f3cc1 100644 --- a/source-builder/sb/options.py +++ b/source-buil

[PATCH] sb: Optional location of the patches directory

2018-02-16 Thread Maksim E. Kozlov
This patch adds an option for changing location of the patches directory as for source, build and tmp. This can be useful when you use CI/Docker services, for example, or maybe in other cases when you do not want to download patches for every build but can not preserve cloned repo. Maksim E