Re: /etc/issue vs /etc/issue.net in shell.c

2014-11-20 Thread Sebastian Huber
On 20/11/14 22:08, Joel Sherrill wrote: Hi We have different code to process these two files on login. Can someone point me to a standard source which says what is supposed to be handled in each one? Should we really have both paths? One is for telnet: http://linux.die.net/man/5/issue.net

Re: fileio.exe does not have any commands

2014-11-20 Thread Sebastian Huber
On 20/11/14 22:27, Joel Sherrill wrote: Any ideas why the fileio sample doesn't have any commands configured anymore? This was on sparc/sis where there should have been many. It has commands if you log in as 'root' with password 'pwd'. By default all commands except 'help' and 'alias' are now

Re: fileio.exe does not have any commands

2014-11-20 Thread Sebastian Huber
On 20/11/14 22:27, Joel Sherrill wrote: Any ideas why the fileio sample doesn't have any commands configured anymore? This was on sparc/sis where there should have been many. -- Sebastian Huber, embedded brains GmbH Address : Dornierstr. 4, D-82178 Puchheim, Germany Phone : +49 89 189 47 41

Re: [rtems commit] bsps/arm: Enable L2C for Cortex-A9 MPCore BSPs

2014-11-20 Thread Sebastian Huber
On 21/11/14 06:10, Chris Johns wrote: On 21/11/2014 12:53 am, Sebastian Huber wrote: Module:rtems Branch:master Commit:50440c065e247899ee739d56cb1392c259289031 Changeset: http://git.rtems.org/rtems/commit/?id=50440c065e247899ee739d56cb1392c259289031 Author:Sebastian Huber

Re: [PATCH] Update newlib to 20 Nov 2014 and hash de616601501c4f82968683e80c112604a2d40222

2014-11-20 Thread Chris Johns
On 21/11/2014 9:03 am, Joel Sherrill wrote: This picks up at least these RTEMS Project patches: + Joel Sherrill to ensure the PRIxxPTR defines are correct on all targets. + Sebastian Huber NGROUPS adjusted to have even value. This is ok to push. Chris --- rtems/config/tools/rtems-gc

Re: [rtems commit] bsps/arm: Enable L2C for Cortex-A9 MPCore BSPs

2014-11-20 Thread Chris Johns
On 21/11/2014 12:53 am, Sebastian Huber wrote: Module:rtems Branch:master Commit:50440c065e247899ee739d56cb1392c259289031 Changeset: http://git.rtems.org/rtems/commit/?id=50440c065e247899ee739d56cb1392c259289031 Author:Sebastian Huber Date: Wed Nov 19 15:30:24 2014 +0100

Re: upcoming set of capture engine patches

2014-11-20 Thread Chris Johns
On 21/11/2014 8:04 am, Jennifer Averett wrote: The upcoming set of capture engine patches were submitted previously, requested changes made, and I tried to split the largest patch into 3 as suggested. They look fine to me. Love the trace at the end of the patch. Great work. Chris __

[PATCH] Update newlib to 20 Nov 2014 and hash de616601501c4f82968683e80c112604a2d40222

2014-11-20 Thread Joel Sherrill
This picks up at least these RTEMS Project patches: + Joel Sherrill to ensure the PRIxxPTR defines are correct on all targets. + Sebastian Huber NGROUPS adjusted to have even value. --- rtems/config/tools/rtems-gcc-4.9.2-newlib-git-1.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

Re: fileio.exe does not have any commands

2014-11-20 Thread Joel Sherrill
Assuming I did the git bisect right: $ git bisect good 7eada71e1b8e707d5b97d4d0cf7d2ca73013e403 is the first bad commit commit 7eada71e1b8e707d5b97d4d0cf7d2ca73013e403 Author: Sebastian Huber Date: Tue Nov 18 07:35:30 2014 +0100 shell: Add mode, UID and GID to shell commands Use th

fileio.exe does not have any commands

2014-11-20 Thread Joel Sherrill
Hi Any ideas why the fileio sample doesn't have any commands configured anymore? This was on sparc/sis where there should have been many. -- Joel Sherrill, Ph.D. Director of Research & Development joel.sherr...@oarcorp.comOn-Line Applications Research Ask me about RTEMS: a fr

[PATCH 6/6] smpcapture01: New test.

2014-11-20 Thread Jennifer Averett
--- testsuites/smptests/Makefile.am | 1 + testsuites/smptests/configure.ac | 1 + testsuites/smptests/smpcapture01/Makefile.am | 19 ++ testsuites/smptests/smpcapture01/init.c | 273 ++ testsuites/smptests/smpcapture01/smp

[PATCH 5/6] capture01: Use capture engine print methods.

2014-11-20 Thread Jennifer Averett
--- testsuites/libtests/capture01/init.c | 249 ++- 1 file changed, 12 insertions(+), 237 deletions(-) diff --git a/testsuites/libtests/capture01/init.c b/testsuites/libtests/capture01/init.c index a725e26..e1e1e84 100644 --- a/testsuites/libtests/capture01/init.c

[PATCH 4/6] capture: Remove whitespace and fix copyrights.

2014-11-20 Thread Jennifer Averett
--- cpukit/libmisc/capture/capture-cli.h| 2 +- cpukit/libmisc/capture/capture.h| 60 - cpukit/libmisc/capture/capture_buffer.c | 6 +-- cpukit/libmisc/capture/capture_buffer.h | 6 +-- cpukit/libmisc/capture/capture_user_exten

/etc/issue vs /etc/issue.net in shell.c

2014-11-20 Thread Joel Sherrill
Hi We have different code to process these two files on login. Can someone point me to a standard source which says what is supposed to be handled in each one? Should we really have both paths? -- Joel Sherrill, Ph.D. Director of Research & Development joel.sherr...@oarcorp.com

[PATCH 3/6] capture: Add SMP support.

2014-11-20 Thread Jennifer Averett
To support smp data was broken into global and percpu capture data. Capture control must be disabled prior to printing or setting of watch points. --- cpukit/libmisc/capture/capture.c | 411 +++ cpukit/libmisc/capture/capture.h | 22 +- cpukit/libmisc/captu

[PATCH 2/6] capture: Move print methods out of cli for reuse.

2014-11-20 Thread Jennifer Averett
Methods to print the data were moved from capture-cli into a support area and are no longer static so that they can be shared by test routines, or application code that wants to use the capture engine without the shell interface. --- cpukit/libmisc/Makefile.am | 1 + cpukit/libmisc

[PATCH 1/6] capture: Move logging of task record to occur after filter check.

2014-11-20 Thread Jennifer Averett
The catpture task record is now logged just prior to the first log entry using that task instead of the first time the task is seen. This involved splitting the record task method into an initialize task and a record task. --- cpukit/libmisc/capture/capture.c| 39 +

upcoming set of capture engine patches

2014-11-20 Thread Jennifer Averett
The upcoming set of capture engine patches were submitted previously, requested changes made, and I tried to split the largest patch into 3 as suggested. Jennifer Averett ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/deve

Re: Trac Wiki Does N`ot Have Images

2014-11-20 Thread Amar Takhar
On 2014-11-20 11:27 -0600, Joel Sherrill wrote: > Hi > > Images do not seem to be in place. Two examples. > > https://devel.rtems.org/wiki/Developer/Git > > https://devel.rtems.org/wiki/TBR/UserManual/RTEMS_Software_Architecture Yes, that is another item I'm working on. Restoring the images is

Trac Wiki Does N`ot Have Images

2014-11-20 Thread Joel Sherrill
Hi Images do not seem to be in place. Two examples. https://devel.rtems.org/wiki/Developer/Git https://devel.rtems.org/wiki/TBR/UserManual/RTEMS_Software_Architecture -- Joel Sherrill, Ph.D. Director of Research & Development joel.sherr...@oarcorp.comOn-Line Applications Re

Re: Rehosting Update

2014-11-20 Thread Gedare Bloom
It should be working now. On Thu, Nov 20, 2014 at 11:17 AM, Cláudio Silva wrote: > Hi, > > Password recovery is working correctly, but I can't access any patch > attached to a ticket. This feature seems to be broken. > > Cláudio > > > On Thu Nov 20 2014 at 15:54:58 Joel Sherrill > wrote: >> >> H

Trac patch issue was Re: Rehosting Update

2014-11-20 Thread Joel Sherrill
Amar.. explicitly bringing you in since you likely missed this. On 11/20/2014 10:17 AM, Cláudio Silva wrote: > Hi, > > Password recovery is working correctly, but I can't access any patch > attached to a ticket. This feature seems to be broken. > > Cláudio > > On Thu Nov 20 2014 at 15:54:58 Joel S

[PATCH 4/4] libtests/malloctest/init.c: Fix warning v2

2014-11-20 Thread Joel Sherrill
Gedare.. does this look better? posix_memalign() is prototyped to take a non-NULL parameter. But our test is deliberately passing one in. With the -Wnon-null warning flag enabled, we will always get warnings on this test unless we disable that warning for this single test case. --- testsuites/lib

Re: Rehosting Update

2014-11-20 Thread Cláudio Silva
Hi, Password recovery is working correctly, but I can't access any patch attached to a ticket. This feature seems to be broken. Cláudio On Thu Nov 20 2014 at 15:54:58 Joel Sherrill wrote: > Hi > > https://devel.rtems.org/ is now up with our Trac instance. > As mentioned in a previous update, t

Re: Rehosting Update

2014-11-20 Thread Gedare Bloom
On Thu, Nov 20, 2014 at 10:54 AM, Joel Sherrill wrote: > Hi > > https://devel.rtems.org/ is now up with our Trac instance. > As mentioned in a previous update, this merges Bugzilla and > Mediawiki. All the old content is there but it has likely moved > around. If you spot something broken or out o

Rehosting Update

2014-11-20 Thread Joel Sherrill
Hi https://devel.rtems.org/ is now up with our Trac instance. As mentioned in a previous update, this merges Bugzilla and Mediawiki. All the old content is there but it has likely moved around. If you spot something broken or out of date, fix it or report it. Old bugzilla accounts have been migr

Re: [PATCH 8/8] i386/pc386: VESA based frame buffer utilizing real mode interrupt 10h

2014-11-20 Thread Joel Sherrill
Same comments as on others. Gedare just pushed this. Do the fixes I noted across the file set in another round of patches. It is easier for all involved. :) --joel On 11/20/2014 8:00 AM, Jan Dolezal wrote: > --- > c/src/lib/libbsp/i386/pc386/Makefile.am | 5 + > c/src/lib/libbsp/i38

Re: [PATCH 7/8] i386/pc386/include: header files for VESA BIOS EXTENSIONS and VESA Extended Display Identification Data

2014-11-20 Thread Joel Sherrill
On 11/20/2014 8:00 AM, Jan Dolezal wrote: > --- > c/src/lib/libbsp/i386/pc386/Makefile.am| 2 + > c/src/lib/libbsp/i386/pc386/include/edid.h | 513 > + > c/src/lib/libbsp/i386/pc386/include/vbe3.h | 463 ++ > c/src/lib/libbsp/i386/pc386/p

Re: [PATCH 6/8] i386/shared/realmode_int: real mode interrupt interface

2014-11-20 Thread Joel Sherrill
On 11/20/2014 8:00 AM, Jan Dolezal wrote: > --- > c/src/lib/libbsp/i386/pc386/Makefile.am| 2 + > c/src/lib/libbsp/i386/pc386/preinstall.am | 4 + > .../libbsp/i386/shared/realmode_int/realmode_int.c | 406 > + > .../libbsp/i386/shared/realmode_int/re

Re: [PATCHv2/RFC 0/8] i386 VESA framebuffer support

2014-11-20 Thread Gedare Bloom
Committed, please verify. There were 3 whitespace errrors (newline at EOF) if you care to find and fix them. -Gedare On Thu, Nov 20, 2014 at 9:00 AM, Jan Dolezal wrote: > Framebuffer driver for i386 PC686BSP utilizing VESA BIOS EXTENSIONS > to initialize graphics mode during startup of RTEMS exe

Re: [PATCH 2/8] score: i386: functions converting real mode pointer to physical address and back

2014-11-20 Thread Joel Sherrill
On 11/20/2014 8:00 AM, Jan Dolezal wrote: > --- > cpukit/score/cpu/i386/cpu_asm.S | 43 > > cpukit/score/cpu/i386/rtems/score/i386.h | 32 > 2 files changed, 75 insertions(+) > > diff --git a/cpukit/score/cpu/i386/cpu_asm.S b/cpu

Re: MIN() and MAX() macros

2014-11-20 Thread Gedare Bloom
I don't see a problem with it. On Thu, Nov 20, 2014 at 4:57 AM, Sebastian Huber wrote: > Hello, > > several source and header files define their own MIN() and MAX() macros. > Glibc and BSD define these macros in . Should we simply rely on > this and remove our definitions? > > -- > Sebastian Hube

Re: Coverity Issue with bdbuf.c

2014-11-20 Thread Joel Sherrill
On 11/20/2014 8:11 AM, Sebastian Huber wrote: > On 20/11/14 10:18, Sebastian Huber wrote: >> This code is from the dark ages. At this time the cache manager was >> not available for every BSP. git blame says Chris touched these lines in 2009. Did you learn history differently in Germany? I thoug

Re: [PATCH 4/4] SPARC: optimize IRQ enable & disable

2014-11-20 Thread Daniel Hellstrom
On 11/20/2014 03:09 PM, Sebastian Huber wrote: On 20/11/14 12:36, Daniel Hellstrom wrote: On 11/20/2014 12:08 PM, Sebastian Huber wrote: On 20/11/14 10:22, Daniel Hellstrom wrote: I will fix this. I missed it since it I never enabled RTEMS_PROFILING. I did a test suite run on NGMP with pr

Re: Test failures on arm/realview_pbx_a9_qemu

2014-11-20 Thread Sebastian Huber
On 05/11/14 08:14, Sebastian Huber wrote: on the latest Git master the following new tests fail on arm/realview_pbx_a9_qemu due to a timeout after 180 seconds: top, dl01.pre and dl02.pre. I fixed this now: http://git.rtems.org/rtems/commit/?id=3eade71044461829e9553720fbab3102dfe8ad4d http:/

Re: [PATCH] ARM removed shared/abort from several ARM BSPs

2014-11-20 Thread Sebastian Huber
Thanks, committed: http://git.rtems.org/rtems/commit/?id=96a9f4cb6db182a462e0a9aef8446fd2ee2b227d -- Sebastian Huber, embedded brains GmbH Address : Dornierstr. 4, D-82178 Puchheim, Germany Phone : +49 89 189 47 41-16 Fax : +49 89 189 47 41-09 E-Mail : sebastian.hu...@embedded-brains.de

Re: Coverity Issue with bdbuf.c

2014-11-20 Thread Sebastian Huber
On 20/11/14 10:18, Sebastian Huber wrote: This code is from the dark ages. At this time the cache manager was not available for every BSP. I fixed it, and wait now for Git commit access. http://git.rtems.org/rtems/commit/?id=3bb9c61c588bf532ead85f9da2cff1951df8be49 -- Sebastian Huber, embe

Re: [PATCH 4/4] SPARC: optimize IRQ enable & disable

2014-11-20 Thread Sebastian Huber
On 20/11/14 12:36, Daniel Hellstrom wrote: On 11/20/2014 12:08 PM, Sebastian Huber wrote: On 20/11/14 10:22, Daniel Hellstrom wrote: I will fix this. I missed it since it I never enabled RTEMS_PROFILING. I did a test suite run on NGMP with profiling enabled and your patches with a local f

[PATCH 8/8] i386/pc386: VESA based frame buffer utilizing real mode interrupt 10h

2014-11-20 Thread Jan Dolezal
--- c/src/lib/libbsp/i386/pc386/Makefile.am | 5 + c/src/lib/libbsp/i386/pc386/configure.ac | 13 + c/src/lib/libbsp/i386/pc386/console/fb_vesa_rm.c | 858 +++ c/src/lib/libbsp/i386/pc386/include/fb_vesa.h| 131 c/src/lib/libbsp/i386/pc386/preinstal

[PATCH 6/8] i386/shared/realmode_int: real mode interrupt interface

2014-11-20 Thread Jan Dolezal
--- c/src/lib/libbsp/i386/pc386/Makefile.am| 2 + c/src/lib/libbsp/i386/pc386/preinstall.am | 4 + .../libbsp/i386/shared/realmode_int/realmode_int.c | 406 + .../libbsp/i386/shared/realmode_int/realmode_int.h | 85 + 4 files changed, 497 insertion

[PATCH 7/8] i386/pc386/include: header files for VESA BIOS EXTENSIONS and VESA Extended Display Identification Data

2014-11-20 Thread Jan Dolezal
--- c/src/lib/libbsp/i386/pc386/Makefile.am| 2 + c/src/lib/libbsp/i386/pc386/include/edid.h | 513 + c/src/lib/libbsp/i386/pc386/include/vbe3.h | 463 ++ c/src/lib/libbsp/i386/pc386/preinstall.am | 8 + 4 files changed, 986 insertions(+

[PATCH 5/8] i386: global descriptor table manipulation functions

2014-11-20 Thread Jan Dolezal
--- c/src/lib/libbsp/i386/shared/irq/idt.c | 156 + c/src/lib/libcpu/i386/cpu.h| 91 ++- 2 files changed, 207 insertions(+), 40 deletions(-) diff --git a/c/src/lib/libbsp/i386/shared/irq/idt.c b/c/src/lib/libbsp/i386/shared/irq/idt.c i

[PATCH 2/8] score: i386: functions converting real mode pointer to physical address and back

2014-11-20 Thread Jan Dolezal
--- cpukit/score/cpu/i386/cpu_asm.S | 43 cpukit/score/cpu/i386/rtems/score/i386.h | 32 2 files changed, 75 insertions(+) diff --git a/cpukit/score/cpu/i386/cpu_asm.S b/cpukit/score/cpu/i386/cpu_asm.S index 9b39567..f3ef4e2 10064

[PATCH 4/8] cpukit: basedefs: macro for packed attribute

2014-11-20 Thread Jan Dolezal
--- cpukit/score/include/rtems/score/basedefs.h | 10 ++ 1 file changed, 10 insertions(+) diff --git a/cpukit/score/include/rtems/score/basedefs.h b/cpukit/score/include/rtems/score/basedefs.h index 12480a8..695ab8f 100644 --- a/cpukit/score/include/rtems/score/basedefs.h +++ b/cpukit/sc

[PATCHv2/RFC 0/8] i386 VESA framebuffer support

2014-11-20 Thread Jan Dolezal
Framebuffer driver for i386 PC686BSP utilizing VESA BIOS EXTENSIONS to initialize graphics mode during startup of RTEMS executive. Temporary switch to realmode is used for Video BIOS invocation. The implementation has been tested with microwindows from RTEMS Graphics Toolkit using QEMU {cirrus, s

[PATCH 3/8] i386: GDTR manipulation functions parameters changed to use explicit width types

2014-11-20 Thread Jan Dolezal
--- c/src/lib/libcpu/i386/cpu.h | 6 -- c/src/lib/libcpu/i386/idtr.S | 6 +++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/c/src/lib/libcpu/i386/cpu.h b/c/src/lib/libcpu/i386/cpu.h index 4c56731..e14acc4 100644 --- a/c/src/lib/libcpu/i386/cpu.h +++ b/c/src/lib/libcpu/i386

[PATCH 1/8] i386/pc386: configurable size of descriptor tables

2014-11-20 Thread Jan Dolezal
--- c/src/lib/libbsp/i386/pc386/Makefile.am| 1 + c/src/lib/libbsp/i386/pc386/configure.ac | 5 + c/src/lib/libbsp/i386/pc386/include/bsp.h | 6 ++ c/src/lib/libbsp/i386/pc386/include/tblsizes.h | 25 + c/src/lib/libbsp/i386/pc386/preinstall.am

Re: RTEMS Rehosting Update

2014-11-20 Thread Joel Sherrill
On November 20, 2014 3:26:47 AM CST, Hesham Moustafa wrote: >Hi Chris, > > >On Wed, Nov 19, 2014 at 6:40 PM, Chris Johns wrote: > >On 20/11/2014 4:41 am, Hesham Moustafa wrote: > > >+ www.rtems.org is alive there. (accept the >certificate) >+ mailing lists ne

Re: [PATCH 4/4] SPARC: optimize IRQ enable & disable

2014-11-20 Thread Daniel Hellstrom
On 11/20/2014 12:08 PM, Sebastian Huber wrote: On 20/11/14 10:22, Daniel Hellstrom wrote: I will fix this. I missed it since it I never enabled RTEMS_PROFILING. I did a test suite run on NGMP with profiling enabled and your patches with a local fix. So overall they don't make things worse a

Re: [PATCH 4/4] SPARC: optimize IRQ enable & disable

2014-11-20 Thread Sebastian Huber
On 20/11/14 10:22, Daniel Hellstrom wrote: I will fix this. I missed it since it I never enabled RTEMS_PROFILING. I did a test suite run on NGMP with profiling enabled and your patches with a local fix. So overall they don't make things worse and the median of all maximum thread dispatch d

MIN() and MAX() macros

2014-11-20 Thread Sebastian Huber
Hello, several source and header files define their own MIN() and MAX() macros. Glibc and BSD define these macros in . Should we simply rely on this and remove our definitions? -- Sebastian Huber, embedded brains GmbH Address : Dornierstr. 4, D-82178 Puchheim, Germany Phone : +49 89 189 4

Re: RTEMS Rehosting Update

2014-11-20 Thread Hesham Moustafa
Hi Chris, On Wed, Nov 19, 2014 at 6:40 PM, Chris Johns wrote: > On 20/11/2014 4:41 am, Hesham Moustafa wrote: > >> >> + www.rtems.org is alive there. (accept the >> certificate) >> + mailing lists never went down. They had been relocated >> months ago.

Re: [PATCH 4/4] SPARC: optimize IRQ enable & disable

2014-11-20 Thread Daniel Hellstrom
Hi, I will fix this. I missed it since it I never enabled RTEMS_PROFILING. Thanks! Daniel On 11/20/2014 10:12 AM, Sebastian Huber wrote: With your patches applied I get a link-time error: gmake[6]: Entering directory `/scratch/git-build/b-smp-ngmp/sparc-rtems4.11/c/ngmp/testsuites/samples/h

Re: Coverity Issue with bdbuf.c

2014-11-20 Thread Sebastian Huber
This code is from the dark ages. At this time the cache manager was not available for every BSP. I fixed it, and wait now for Git commit access. -- Sebastian Huber, embedded brains GmbH Address : Dornierstr. 4, D-82178 Puchheim, Germany Phone : +49 89 189 47 41-16 Fax : +49 89 189 47 41

Re: [PATCH 4/4] SPARC: optimize IRQ enable & disable

2014-11-20 Thread Sebastian Huber
On 19/11/14 16:35, Daniel Hellstrom wrote: +ta 9 ! syscall (disable interrupts) Maybe these magic numbers should get a #define so that you can grep for it in the sources. -- Sebastian Huber, embedded brains GmbH Address : Dornierstr. 4, D-82178 Pu

Re: [PATCH 4/4] SPARC: optimize IRQ enable & disable

2014-11-20 Thread Sebastian Huber
With your patches applied I get a link-time error: gmake[6]: Entering directory `/scratch/git-build/b-smp-ngmp/sparc-rtems4.11/c/ngmp/testsuites/samples/hello' sparc-rtems4.11-gcc -B../../../../../ngmp/lib/ -specs bsp_specs -qrtems -DHAVE_CONFIG_H -I. -I/home/sh/rtems-4.11/c/src/../../testsuit

Re: [PATCH 4/4] SPARC: optimize IRQ enable & disable

2014-11-20 Thread Sebastian Huber
On 20/11/14 09:01, Daniel Hellstrom wrote: Also, do these changes complicate the paravirtualization efforts done with sparc32 for xtratum? I don't know, I guess it will break. Can you point me to the xtratum source code I will have a look. Of course I want xtratum to work with RTEMS/LEON, how

Re: [PATCH 1/4] SPARC: window overflow optimization

2014-11-20 Thread Sebastian Huber
Maybe you should add a comment that normally 3 nops are necessary, but in this case it is not. On 19/11/14 16:35, Daniel Hellstrom wrote: I see no need for waiting the 3 instruction delay for wim to be written in this case, since the STD after does not depend on WIM --- c/src/lib/libcpu/sparc

Re: [PATCH 4/4] SPARC: optimize IRQ enable & disable

2014-11-20 Thread Daniel Hellstrom
Hi, On 11/19/2014 08:19 PM, Gedare Bloom wrote: This one needs a release note as it may impede some applications if they assumed they could use these trap vectors. I agree. Where should I update? Also, do these changes complicate the paravirtualization efforts done with sparc32 for xtratum?