[PATCH v3 1/5] unhex.c: Remove unnecessary extern of errno

2018-02-16 Thread Joel Sherrill
Closes #2610. --- tools/build/unhex.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/build/unhex.c b/tools/build/unhex.c index 7c3bab0..e05f05f 100644 --- a/tools/build/unhex.c +++ b/tools/build/unhex.c @@ -684,8 +684,6 @@ error(int error_flag, ...) register char *format;

[PATCH v3 4/5] Add PowerPC paravirtualization support

2018-02-16 Thread Joel Sherrill
From: Jennifer Averett Cannot read or write MSR when executing in user mode. This is used when RTEMS_PARAVIRT is defined. Provide alternate methods to disable/enable interrupts Closes #3306. --- c/src/lib/libcpu/powerpc/new-exceptions/cpu.c| 10

[PATCH v3 0/5] V3 - ARM and PowerPC Paravirtualization, etc.

2018-02-16 Thread Joel Sherrill
V2-3 of the patch was needed to correct having a comma in an email address. This patch series adds paravirtualization support to the ARM and PowerPC plus some odd clean up encountered along the way. Jennifer Averett (2): Add PowerPC paravirtualization support sp54: Fix warning Joel Sherrill

[PATCH v3 5/5] sp54: Fix warning

2018-02-16 Thread Joel Sherrill
From: Jennifer Averett Add CONFIGURE_RTEMS_INIT_TASKS_TABLE to remove warning. --- testsuites/sptests/sp54/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsuites/sptests/sp54/init.c b/testsuites/sptests/sp54/init.c index

[PATCH v3 2/5] powerpc/shared/startup/linkcmds.base: Add wildcards on some sections

2018-02-16 Thread Joel Sherrill
Closes #3307. --- c/src/lib/libbsp/powerpc/shared/startup/linkcmds.base | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/c/src/lib/libbsp/powerpc/shared/startup/linkcmds.base b/c/src/lib/libbsp/powerpc/shared/startup/linkcmds.base index 2005917..90cfb9e 100644 ---

[PATCH v3 3/5] Add ARM Paravirtualization support

2018-02-16 Thread Joel Sherrill
Closes #3305. --- cpukit/score/cpu/arm/cpu_asm.S | 2 ++ cpukit/score/cpu/arm/include/rtems/score/cpu.h | 6 ++ 2 files changed, 8 insertions(+) diff --git a/cpukit/score/cpu/arm/cpu_asm.S b/cpukit/score/cpu/arm/cpu_asm.S index f58b99d..a508cc5 100644 ---

[PATCH v2 1/5] unhex.c: Remove unnecessary extern of errno

2018-02-16 Thread Joel Sherrill
Closes #2610. --- tools/build/unhex.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/build/unhex.c b/tools/build/unhex.c index 7c3bab0..e05f05f 100644 --- a/tools/build/unhex.c +++ b/tools/build/unhex.c @@ -684,8 +684,6 @@ error(int error_flag, ...) register char *format;

[PATCH v2 2/5] powerpc/shared/startup/linkcmds.base: Add wildcards on some sections

2018-02-16 Thread Joel Sherrill
Closes #3307. --- c/src/lib/libbsp/powerpc/shared/startup/linkcmds.base | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/c/src/lib/libbsp/powerpc/shared/startup/linkcmds.base b/c/src/lib/libbsp/powerpc/shared/startup/linkcmds.base index 2005917..90cfb9e 100644 ---

[PATCH v2 0/5] Misc Patch Series

2018-02-16 Thread Joel Sherrill
V2 of the patch was needed to correct having a comma in an email address. This patch series adds paravirtualization support to the ARM and PowerPC plus some odd clean up encountered along the way. Jennifer Averett (1): Add PowerPC paravirtualization support Joel Sherrill (3): unhex.c:

[PATCH 1/5] unhex.c: Remove unnecessary extern of errno

2018-02-16 Thread Joel Sherrill
Closes #2610. --- tools/build/unhex.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/build/unhex.c b/tools/build/unhex.c index 7c3bab0..e05f05f 100644 --- a/tools/build/unhex.c +++ b/tools/build/unhex.c @@ -684,8 +684,6 @@ error(int error_flag, ...) register char *format;

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

2018-02-16 Thread Maksim E. Kozlov
Signed-off-by: Maksim E. Kozlov --- 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 +++

[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.