RE: rsb problem with python

2018-05-30 Thread Siddons, David
Hi Alex, I'm pretty git-ignorant. How do I use your command git config url https://git.rtems.org/ ? If I just execute that it says "error: key does not contain a section: url". Pete. From: Slide [slide.o@gmail.com] Se

Re: rsb problem with python

2018-05-30 Thread Slide
Hi Pete, That's something I would like to know as well. When something fails after building GCC, it would be nice to not have to rebuild GCC the next time. I don't know enough about the RTEMS build process at this point to be able to help you on that part. Regards, Alex On Wed, May 30, 2018 at

Re: rsb problem with python

2018-05-30 Thread D Peter Siddons
Hi Alex,  OK, thanks. I'll try that tonight. Maybe it will work as-is from my home network. Is there a way to skip parts of the build? The first part is very slow. Pete. On 05/30/2018 04:59 PM, Slide wrote: Hi Pete, I also ran into a similar failure :-) I had to use: git config url http

Re: rsb problem with python

2018-05-30 Thread Slide
Hi Pete, I also ran into a similar failure :-) I had to use: git config url https://git.rtems.org/.insteadOf git://git.rtems.org My IT blocks the git protocol port on our company firewall. You can make this global by adding --global after config in the com

Re: rsb problem with python

2018-05-30 Thread D Peter Siddons
Hi Gedare,     That worked, i.e. commenting out the miniconda path and installing python3.6-dev. So on to the next stop :) Processing stopped when building the kernel. At the end of the log file I see: script: 72: export PATH script: 73: # Default environment set up. script: 74: LANG=C scrip

Re: rsb problem with python

2018-05-30 Thread Gedare Bloom
Pete, On Wed, May 30, 2018 at 12:19 PM, D Peter Siddons wrote: > Hi Gedare, > >I didn't get your earlier email (?), but the answer is: > > /home/peter/miniconda3/bin/python3.6 > > so the only way I have 3.6 is through miniconda. Maybe it expects > /usr/bin/python3.6? > Odd that my email didn'

Re: rsb problem with python

2018-05-30 Thread D Peter Siddons
Hi Gedare,    I didn't get your earlier email (?), but the answer is: /home/peter/miniconda3/bin/python3.6 so the only way I have 3.6 is through miniconda. Maybe it expects /usr/bin/python3.6? Pete. On 05/30/2018 12:12 PM, Gedare Bloom wrote: Alex, Yes that also makes sense, thank you.

Re: rsb problem with python

2018-05-30 Thread Gedare Bloom
Alex, Yes that also makes sense, thank you. Usually, I've seen that problem manifest as missing Python.h, but error messages can be vague and inconsistent. :) On Wed, May 30, 2018 at 11:49 AM, Slide wrote: > I ran into a similar issue and the way I solved it was by installing the > -dev package

Re: rtems_region_create() returning error code

2018-05-30 Thread Sebastian Huber
- Am 30. Mai 2018 um 16:20 schrieb Francesco Nuzzolo francesco.nuzz...@spaceapplications.com: > Thanks for the answer. > > Do you know if there is a clean way to force allocation of an array to > an 8-byte boundary in LEON? > > Maybe defining the array as double, since sizeof(double) is 8 o

Re: rsb problem with python

2018-05-30 Thread Slide
I ran into a similar issue and the way I solved it was by installing the -dev package for Python. For me this was libpython3-dev on Ubuntu. I'm not sure how to do that with the Anaconda installation, but this may help point you in the right direction. Regards, Alex On Wed, May 30, 2018 at 6:57 A

Re: rtems_region_create() returning error code

2018-05-30 Thread Francesco Nuzzolo
Thanks for the answer. Do you know if there is a clean way to force allocation of an array to an 8-byte boundary in LEON? Maybe defining the array as double, since sizeof(double) is 8 on LEON ? Or should I stop using the region manager altogether? Best regards, Francesco On 5/30/2018 10

Re: rsb problem with python

2018-05-30 Thread Gedare Bloom
Pete, Do you get anything with: $ which python3.6 Probably, it is looking for that invocation command. I ought to try this, because my Ubuntu does not ship with python3.6 I know, so maybe it breaks too... hm On Mon, May 28, 2018 at 6:23 PM, Siddons, David wrote: > Hi Amaan, >Actually, /hom

Re: zynq picozed board

2018-05-30 Thread D Peter Siddons
Hi Chris,     THanks very much, I'll give it a shot. Just as soon as I solve my rsb python issue :) Pete. On 05/30/2018 05:17 AM, Chris Johns wrote: On 29/5/18 5:12 am, Siddons, David wrote: Has anyone implemented RTEMS on an Avnet Picozed board? What needs to be changed in the existing Z

Re: zynq picozed board

2018-05-30 Thread Chris Johns
On 29/5/18 5:12 am, Siddons, David wrote: > Has anyone implemented RTEMS on an Avnet Picozed board? What needs to be > changed > in the existing ZynQ support to do that? There should not be too much. I have these functions with suitable values /* * Provide the peripheral clock freq. */ ui

Re: rtems_region_create() returning error code

2018-05-30 Thread Sebastian Huber
On 30/05/18 10:19, Francesco Nuzzolo wrote: - starting address is not on a four byte boundary. This is a bug in the documentation and in the 4.10 region implementation. The starting address must be aligned to the CPU_ALIGNMENT which is 8 on SPARC. -- Sebastian Huber, embedded brains GmbH A

rtems_region_create() returning error code

2018-05-30 Thread Francesco Nuzzolo
Hello, I want to use the RTEMS region manager but the function rtems_region_create() fails with code RTEMS_INVALID_ADDRESS. I am using RTEMS 4.10 on a LEON4 processor. My RTEMS configuration information includes: #define CONFIGURE_MAXIMUM_REGIONS   1 According to the RTEMS C Us