Re: [PATCH] gdb: prefere python3 if it is installed

2021-08-22 Thread Christian Mauderer
On 21/08/2021 04:56, Chris Johns wrote: On 21/8/21 4:08 am, o...@c-mauderer.de wrote: Started to test both (MSYS2 and Cygwin) and I start to suspect that our manual needs some minor updates. I'm taking notes ... Oh awesome, I am sooo grateful. Thanks Chris Hello, building on Windows is

Re: [PATCH] gdb: prefere python3 if it is installed

2021-08-20 Thread Christian MAUDERER
Am 20.08.21 um 09:02 schrieb Chris Johns: On 20/8/21 4:48 pm, Christian MAUDERER wrote: Hello, Am 20.08.21 um 03:49 schrieb Chris Johns: On 20/8/21 3:16 am, Joel Sherrill wrote: On Thu, Aug 19, 2021 at 11:51 AM Gedare Bloom wrote: I have no problem with this. I think it is sensible

Re: [PATCH] gdb: prefere python3 if it is installed

2021-08-20 Thread Christian MAUDERER
took a wrong direction. We discussed deprecating python2 a few times and I know that we will not do it before the big long living distributions drop it. I can live with that and I don't want to re-start this discussion with this patch. On Thu, Aug 19, 2021 at 3:24 AM Christian MAUDERER wrote

Re: [PATCH rtems 2/2] termios: Pass number of sent chars to l_start

2021-08-13 Thread Christian MAUDERER
reach right now due to the point that I'm still working from home. But I'll try to find a few more that I can use for tests. Best regards Christian On Thu, Aug 12, 2021 at 5:42 AM Christian Mauderer wrote: At the moment the line discipline start function (l_start) has no possibility to get

Re: [PATCH rtems-libbsd] ppp: Fix transmitting data

2021-08-13 Thread Christian MAUDERER
Hello Chris, Am 13.08.21 um 04:46 schrieb Chris Johns: On 12/8/21 9:42 pm, Christian Mauderer wrote: The pppstart expected that a driver write would somehow magically process all data passed to the write function. Because ppp disables all buffering that originally has been in termios

Re: [PATCH rtems-libbsd] ppp: Fix transmitting data

2021-08-13 Thread Christian MAUDERER
Am 13.08.21 um 10:01 schrieb Chris Johns: On 13/8/21 5:22 pm, Christian MAUDERER wrote: Hello Chris, Am 13.08.21 um 04:46 schrieb Chris Johns: On 12/8/21 9:42 pm, Christian Mauderer wrote: The pppstart expected that a driver write would somehow magically process all data passed to the write

Re: RTEMS Tools on 5 release can't be build with modern LLVM

2021-08-17 Thread Christian MAUDERER
Thanks for having a look at it. I created the ticket and updated rtems-tools and rtems-source-builder like described. Best regards Christian Am 17.08.21 um 00:20 schrieb Chris Johns: Looks good and thank you for sorting this out. Chris On 17/8/21 1:17 am, Christian MAUDERER wrote: Am

[PATCH rtems-libbsd] imx: Remove ccm functions alredy defined in RTEMS

2021-08-31 Thread Christian Mauderer
The imx_ccm_*_hz are all defined in RTEMS. So don't duplicate them in libbsd. Otherwise some applications get linker errors. Update #3869 --- freebsd/sys/arm/freescale/imx/imx6_ccm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/freebsd/sys/arm/freescale/imx/imx6_ccm.c

Re: [PATCH rtems-libbsd] imx: Remove ccm functions alredy defined in RTEMS

2021-09-01 Thread Christian MAUDERER
-- embedded brains GmbH Herr Christian MAUDERER Dornierstr. 4 82178 Puchheim Germany email: christian.maude...@embedded-brains.de phone: +49-89-18 94 741 - 18 fax: +49-89-18 94 741 - 08 Registergericht: Amtsgericht München Registernummer: HRB 157899 Vertretungsberechtigte Geschäftsführer

[PATCH rtems] bsps/imxrt: Improve SPI driver

2021-09-01 Thread Christian Mauderer
It wasn't possible to keep the CS line low between multiple message descriptors in one transfer. This patch reworks the driver so that it is possible. Update #4180 --- bsps/arm/imxrt/spi/imxrt-lpspi.c | 197 +++ 1 file changed, 124 insertions(+), 73 deletions(-) diff

RTEMS Tools on 5 release can't be build with modern LLVM

2021-08-16 Thread Christian MAUDERER
Herr Christian MAUDERER Dornierstr. 4 82178 Puchheim Germany email: christian.maude...@embedded-brains.de phone: +49-89-18 94 741 - 18 fax: +49-89-18 94 741 - 08 Registergericht: Amtsgericht München Registernummer: HRB 157899 Vertretungsberechtigte Geschäftsführer: Peter Rasmussen, Thomas Dörfler

Re: RTEMS Tools on 5 release can't be build with modern LLVM

2021-08-16 Thread Christian MAUDERER
Hello Joel, Am 16.08.21 um 17:03 schrieb Joel Sherrill: On Mon, Aug 16, 2021 at 9:49 AM Christian MAUDERER wrote: Hello, I noted that I can't build the RTEMS 5 toolchain if I have a modern LLVM installed using the RTEMS source builder. Therefore I would like to backport the patch

Re: RTEMS Tools on 5 release can't be build with modern LLVM

2021-08-16 Thread Christian MAUDERER
Am 16.08.21 um 17:12 schrieb Joel Sherrill: On Mon, Aug 16, 2021 at 10:08 AM Christian MAUDERER wrote: Hello Joel, Am 16.08.21 um 17:03 schrieb Joel Sherrill: On Mon, Aug 16, 2021 at 9:49 AM Christian MAUDERER wrote: Hello, I noted that I can't build the RTEMS 5 toolchain if I have

[PATCH] gdb: prefere python3 if it is installed

2021-08-19 Thread Christian Mauderer
More and more systems stop shipping python2. So we should start to prefer python3 over python2. For building gdb it is not only necessary to have a python binary installed, but also the matching python-devel packet. On a lot of hosts that will now be more often python3-devel and not python2-devel.

Re: [PATCH] gdb: prefere python3 if it is installed

2021-08-19 Thread Christian MAUDERER
PS: I had the problem on the 5 branch of RTEMS source builder. I think we should apply a patch to both: master and the 5 branch. Am 19.08.21 um 10:34 schrieb Christian Mauderer: More and more systems stop shipping python2. So we should start to prefer python3 over python2. For building gdb

Re: [PATCH rtems-libbsd] imx: Remove ccm functions alredy defined in RTEMS

2021-09-02 Thread Christian MAUDERER
Am 02.09.21 um 04:57 schrieb Chris Johns: On 1/9/21 4:24 pm, Christian MAUDERER wrote: Hello Gedare and Chris, Am 01.09.21 um 07:55 schrieb Chris Johns: On 1/9/21 7:26 am, Gedare Bloom wrote: Sorry, i think libbsd is still a bit slushy, wait for Chris to ok thx I planned to wait for Chris

Re: [PATCH rtems] bsps/imxrt: Improve SPI driver

2021-09-02 Thread Christian MAUDERER
Thanks. Am 01.09.21 um 18:50 schrieb Gedare Bloom: looks ok, touching imxrt driver only On Wed, Sep 1, 2021 at 7:55 AM Christian Mauderer wrote: It wasn't possible to keep the CS line low between multiple message descriptors in one transfer. This patch reworks the driver so

Re: [PATCH rtems-libbsd] imx: Remove ccm functions alredy defined in RTEMS

2021-09-02 Thread Christian MAUDERER
Am 02.09.21 um 08:44 schrieb Christian MAUDERER: Am 02.09.21 um 08:40 schrieb Chris Johns: On 2/9/21 4:35 pm, Christian MAUDERER wrote: Am 02.09.21 um 04:57 schrieb Chris Johns: On 1/9/21 4:24 pm, Christian MAUDERER wrote: Hello Gedare and Chris, Am 01.09.21 um 07:55 schrieb Chris Johns

Re: [PATCH rtems-libbsd] imx: Remove ccm functions alredy defined in RTEMS

2021-09-02 Thread Christian MAUDERER
Am 02.09.21 um 08:40 schrieb Chris Johns: On 2/9/21 4:35 pm, Christian MAUDERER wrote: Am 02.09.21 um 04:57 schrieb Chris Johns: On 1/9/21 4:24 pm, Christian MAUDERER wrote: Hello Gedare and Chris, Am 01.09.21 um 07:55 schrieb Chris Johns: On 1/9/21 7:26 am, Gedare Bloom wrote: Sorry, i

Re: [PATCH rtems-libbsd] imx: Remove ccm functions alredy defined in RTEMS

2021-09-02 Thread Christian MAUDERER
Hello Chris, Am 02.09.21 um 09:33 schrieb Chris Johns: On 2/9/21 5:18 pm, Christian MAUDERER wrote: And already a question regarding the new branch: You cleaned up the rtems-bsd-kernel-namespace.h (which is great). Thanks. It came as a surprise the script broke on FreeBSD. My patch removes

[PATCH rtems-docs] user/imxrt: Add notes about problems with EVB

2021-07-15 Thread Christian Mauderer
There are some possible problems with the i.MXRT1050 evaluation board. Make some notes about that in the BSP manual. --- user/bsps/arm/imxrt.rst | 9 + 1 file changed, 9 insertions(+) diff --git a/user/bsps/arm/imxrt.rst b/user/bsps/arm/imxrt.rst index 3f8b270..f8d9731 100644 ---

Re: [PATCH rtems-libbsd v2 2/5] usb_template: Configure template driver only for CDC Ethernet

2021-07-29 Thread Christian MAUDERER
hes? Yes it needs to be correct for the script to work but I would check the freebsd-to-rtems.py script works with these guard comments. Chris ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel -- ---

Re: [PATCH rtems-libbsd 0/5] RTEMS LibBSD Documentation

2021-08-02 Thread Christian MAUDERER
Am 02.08.21 um 10:38 schrieb Chris Johns: On 2/8/21 4:58 pm, Christian MAUDERER wrote: Hello Husni, thanks for the patches. I'm sure that this will start a discussion about the right place for that documentation. libbsd documentation is a long overdue topic that has been neglected by all of us

Re: [PATCH rtems-libbsd 0/5] RTEMS LibBSD Documentation

2021-08-03 Thread Christian MAUDERER
Hello, Am 03.08.21 um 04:07 schrieb Chris Johns: On 3/8/21 3:24 am, Sebastian Huber wrote: On 02/08/2021 18:37, Vijay Kumar Banerjee wrote: I think there should be a high-level user manual subsection for networking that describes how the selection of the network stack works. We can then add

Re: [PATCH rtems-libbsd v2 0/5] Beagle BSP: USB Template Driver for CDC Ethernet

2021-08-09 Thread Christian MAUDERER
Hello Chris, Am 09.08.21 um 02:34 schrieb Chris Johns: On 1/8/21 9:27 pm, Christian Mauderer wrote: Hello Husni, just tested that and it works fine. With a simple curl I can reach about 8.5 MByte/s sending to the beagle and 19.5 MByte/s receiving from it. Please take a look at the points

Re: [PATCH rtems-libbsd v2 0/5] Beagle BSP: USB Template Driver for CDC Ethernet

2021-08-08 Thread Christian Mauderer
Hello Chris, I think all open questions should be answered or did I miss one from your side? If not I would like to push the patches. Best regards Christian On 08/08/2021 11:46, Ahamed Husni wrote: Hi, On Sun, Aug 8, 2021 at 3:00 PM Christian Mauderer <mailto:o...@c-mauderer.de>&

Re: [PATCH rtems-libbsd v2 0/5] Beagle BSP: USB Template Driver for CDC Ethernet

2021-08-08 Thread Christian Mauderer
generated: Please keep them. Basically keep everything that is in one of the files that you touch, except if you have a good reason why the symbol should _not_ be added. If they are not generated: Please clearly say that. Best regards Christian On Mon, Aug 2, 2021 at 12:09 PM Christia

Re: [PATCH rtems-libbsd v2 0/5] Beagle BSP: USB Template Driver for CDC Ethernet

2021-08-08 Thread Christian Mauderer
Hello Husni, On 08/08/2021 11:15, Ahamed Husni wrote: Hi Christian, On Sun, Aug 8, 2021 at 1:36 PM Christian Mauderer <mailto:o...@c-mauderer.de>> wrote: Hello Husni, On 07/08/2021 21:56, Ahamed Husni wrote: > Hi Christian, > > Are there any issue

[PATCHES] Fix PPP in libbsd and optimize ATSAM console

2021-08-12 Thread Christian Mauderer
Hello, this set of patches fixes PPP. Basically the current implementation in libbsd can't work with console drivers that can't buffer a lot of characters. The pppstart() function just assumes that the low level console write can send an arbitrary number of characters without checking how many

[PATCH rtems 1/2] bsps/atsam: Improve UART / USART tx performance

2021-08-12 Thread Christian Mauderer
Put the next character into the send buffer if the buffer is empty and not when the last character has been sent out to the line. This improves the performance slightly. Before that patch, the receive path was faster than the transmit path. Therefore a simple echo could drop characters on a busy

[PATCH rtems 2/2] termios: Pass number of sent chars to l_start

2021-08-12 Thread Christian Mauderer
At the moment the line discipline start function (l_start) has no possibility to get feedback about the number of characters that have been sent. This patch passes that information via an additional parameter. The change might trigger a warning on existing code because of a pointer mismatch but

[PATCH rtems-libbsd] ppp: Fix transmitting data

2021-08-12 Thread Christian Mauderer
The pppstart expected that a driver write would somehow magically process all data passed to the write function. Because ppp disables all buffering that originally has been in termios, that assumption is not true for all but polled drivers. With this patch, the pppstart now gets and processes the

Re: [PATCH rtems-libbsd v2 0/5] Beagle BSP: USB Template Driver for CDC Ethernet

2021-08-01 Thread Christian Mauderer
Hello Husni, just tested that and it works fine. With a simple curl I can reach about 8.5 MByte/s sending to the beagle and 19.5 MByte/s receiving from it. Please take a look at the points that Chris Johns asked. As soon as these are addressed, I think the patches could be merged. Please

Re: [PATCH rtems-libbsd v2 0/5] Beagle BSP: USB Template Driver for CDC Ethernet

2021-08-02 Thread Christian MAUDERER
Hello Husni, Am 01.08.21 um 19:59 schrieb Ahamed Husni: Hi Christian, On Sun, Aug 1, 2021 at 4:57 PM Christian Mauderer <mailto:o...@c-mauderer.de>> wrote: Hello Husni, just tested that and it works fine. With a simple curl I can reach about 8.5 MByte/s sending to t

Re: [PATCH rtems-libbsd 0/5] RTEMS LibBSD Documentation

2021-08-02 Thread Christian MAUDERER
libbsd/wscript -- embedded brains GmbH Herr Christian MAUDERER Dornierstr. 4 82178 Puchheim Germany email: christian.maude...@embedded-brains.de phone: +49-89-18 94 741 - 18 fax: +49-89-18 94 741 - 08 Registergericht: Amtsgericht München

Re: [PATCH rtems-libbsd 0/5] RTEMS LibBSD Documentation

2021-08-04 Thread Christian Mauderer
On 04/08/2021 18:09, Gedare Bloom wrote: On Wed, Aug 4, 2021 at 9:05 AM Christian MAUDERER wrote: Hello Gedare, Am 04.08.21 um 16:55 schrieb Gedare Bloom: On Wed, Aug 4, 2021 at 4:18 AM Christian MAUDERER wrote: Hello Chris, Am 04.08.21 um 11:17 schrieb Chris Johns: On 4/8/21 6:34 pm

Re: [PATCH rtems-libbsd 0/5] RTEMS LibBSD Documentation

2021-08-04 Thread Christian MAUDERER
Hello Gedare, Am 04.08.21 um 16:55 schrieb Gedare Bloom: On Wed, Aug 4, 2021 at 4:18 AM Christian MAUDERER wrote: Hello Chris, Am 04.08.21 um 11:17 schrieb Chris Johns: On 4/8/21 6:34 pm, Christian MAUDERER wrote: Hello Chris, Am 04.08.21 um 09:28 schrieb Chris Johns: On 3/8/21 5:00

Re: [PATCH rtems-libbsd 0/5] RTEMS LibBSD Documentation

2021-08-04 Thread Christian MAUDERER
Hello Chris, Am 04.08.21 um 09:28 schrieb Chris Johns: On 3/8/21 5:00 pm, Christian MAUDERER wrote: Hello, Am 03.08.21 um 04:07 schrieb Chris Johns: On 3/8/21 3:24 am, Sebastian Huber wrote: On 02/08/2021 18:37, Vijay Kumar Banerjee wrote: I think there should be a high-level user manual

Re: [PATCH rtems-libbsd 0/5] RTEMS LibBSD Documentation

2021-08-04 Thread Christian MAUDERER
Hello Chris, Am 04.08.21 um 11:17 schrieb Chris Johns: On 4/8/21 6:34 pm, Christian MAUDERER wrote: Hello Chris, Am 04.08.21 um 09:28 schrieb Chris Johns: On 3/8/21 5:00 pm, Christian MAUDERER wrote: Hello, Am 03.08.21 um 04:07 schrieb Chris Johns: On 3/8/21 3:24 am, Sebastian Huber

Re: [PATCH] testsuite/spcache01: Clear allocated coherent cache memory

2021-10-19 Thread Christian MAUDERER
is missing in this context. I think x86 uses it. I think for all other platforms it is unused. Best regards Christian -- embedded brains GmbH Herr Christian MAUDERER Dornierstr. 4 82178 Puchheim Germany email: christian.maude...@embedded-brains.de phone: +49-89

Re: [PATCH rtems-docs] eng: Add rules for attribution

2021-09-28 Thread Christian MAUDERER
Hello Joel, Am 28.09.21 um 14:48 schrieb Joel Sherrill: On Tue, Sep 28, 2021, 1:40 AM Christian MAUDERER <mailto:christian.maude...@embedded-brains.de>> wrote: Hello Joel, Am 28.09.21 um 01:12 schrieb Joel Sherrill: > The Microblaze port is interesting for attrib

Re: [PATCHES] Fix PPP in libbsd and optimize ATSAM console

2021-09-27 Thread Christian MAUDERER
Hello Chris, Am 27.09.21 um 10:51 schrieb Chris Johns: On 27/9/21 6:24 pm, Christian MAUDERER wrote: same like for another patch set: There is a pending discussion for this one. Yeap and so we need to resolve it. I have reordered your original post so the chat follows. I hope that is OK

Re: [PATCH rtems-docs] eng: Add rules for attribution

2021-09-29 Thread Christian MAUDERER
Am 29.09.21 um 02:40 schrieb Chris Johns: On 28/9/21 11:11 pm, Christian MAUDERER wrote: Hello Joel, Am 28.09.21 um 14:48 schrieb Joel Sherrill: On Tue, Sep 28, 2021, 1:40 AM Christian MAUDERER mailto:christian.maude...@embedded-brains.de>> wrote:     Hello Joel,     Am 28.09.21

Re: [PATCH rtems-docs] eng: Add rules for attribution

2021-09-28 Thread Christian MAUDERER
r with whatever else. On Mon, Sep 27, 2021, 9:49 AM Christian Mauderer <mailto:christian.maude...@embedded-brains.de>> wrote: This adds some rules how an attribution for sponsored development should look like. --- Note: This patch is more or less an early draft. See

Re: [PATCH rtems-docs] eng: Add rules for attribution

2021-09-30 Thread Christian MAUDERER
Am 30.09.21 um 02:23 schrieb Chris Johns: On 29/9/21 6:38 pm, Christian MAUDERER wrote: Am 29.09.21 um 02:40 schrieb Chris Johns: On 28/9/21 11:11 pm, Christian MAUDERER wrote: Hello Joel, Am 28.09.21 um 14:48 schrieb Joel Sherrill: On Tue, Sep 28, 2021, 1:40 AM Christian MAUDERER

[PATCH] bsp/imx: Add cs_change support to SPI

2021-10-01 Thread Christian Mauderer
--- bsps/arm/imx/spi/imx-ecspi.c | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/bsps/arm/imx/spi/imx-ecspi.c b/bsps/arm/imx/spi/imx-ecspi.c index 26ba812f62..4732b84713 100644 --- a/bsps/arm/imx/spi/imx-ecspi.c +++ b/bsps/arm/imx/spi/imx-ecspi.c @@ -350,6 +350,9 @@

Re: waf bsp_defaults appears to be broken

2021-10-04 Thread Christian MAUDERER
-- embedded brains GmbH Herr Christian MAUDERER Dornierstr. 4 82178 Puchheim Germany email: christian.maude...@embedded-brains.de phone: +49-89-18 94 741 - 18 fax: +49-89-18 94 741 - 08 Registergericht: Amtsgericht München Registernummer: HRB 157899

Re: waf bsp_defaults appears to be broken

2021-10-04 Thread Christian MAUDERER
Am 04.10.21 um 15:51 schrieb Joel Sherrill: On Mon, Oct 4, 2021 at 2:32 AM Christian MAUDERER wrote: Hello Joel, Am 03.10.21 um 18:06 schrieb Joel Sherrill: Hi No BSP was successfully built in the build sweep Friday. All have failures like this: $ ./waf bsp_defaults --rtems-bsps=powerpc

Re: [PATCH] bsp/imx: Add cs_change support to SPI

2021-10-06 Thread Christian MAUDERER
Thanks. I'll push it. Best regards Christian Am 06.10.21 um 09:39 schrieb Chris Johns: I think you or Sebastian are the imx maintainers so please push when you wish. :) Thanks Chris On 1/10/21 4:31 pm, Christian Mauderer wrote: --- bsps/arm/imx/spi/imx-ecspi.c | 10 ++ 1 file

Re: [PATCHES] Fix PPP in libbsd and optimize ATSAM console

2021-09-27 Thread Christian MAUDERER
the patches? Best regards Christian Am 12.08.21 um 13:41 schrieb Christian Mauderer: Hello, this set of patches fixes PPP. Basically the current implementation in libbsd can't work with console drivers that can't buffer a lot of characters. The pppstart() function just assumes that the low level

Re: [PATCH rtems] bsps/imxrt: Add attribution in file headers

2021-09-27 Thread Christian MAUDERER
in detail. Chris Chris: I think you already mentioned the most relevant rules in your post above. Do you want to create a draft for a documentation patch or should I try to write something? Best regards Christian -- embedded brains GmbH Herr Christian

[PATCH rtems-docs] eng: Add rules for attribution

2021-09-27 Thread Christian Mauderer
eng/coding-file-hdr.rst @@ -2,6 +2,7 @@ .. Copyright (C) 2018, 2020 embedded brains GmbH (http://www.embedded-brains.de) .. Copyright (C) 2018, 2020 Sebastian Huber +.. Copyright (C) 2021 Christian Mauderer .. _FileTemplates: @@ -74,6 +75,28 @@ Check the top-level :file:`COP

Re: [PATCH] untar: Make behavior similar to GNU or BSD tar

2021-12-06 Thread Christian MAUDERER
10240 zcmeH}-%i6I6vlhKr#QxI9dtmSz{DGGboUFc)S*yJ=`?$L>C6^qR=rsp7sHb!M0) zu4Aj4w4~*#v9YzfUihOEmBDLUucK+=(e~X>3#2pePlCC}abIuR-=Srnx zLTn6NXRiNzWh13eQ|B`Z6}g~GTR)Mm>3)85_duQZ;wHAnQ`H2Y8YZ^3$tsSLb;x@C zWUeP;XoWdWPGIYQ{kWW#rus~^aoO0{_LLKK{x78L^*_tyq5pFx(scp0w4eaAOHd&00JNY0w4eaAOHd& V00

Re: Interested in working on ticket #2902, #4328, or #4334

2021-11-12 Thread Christian MAUDERER
- embedded brains GmbH Herr Christian MAUDERER Dornierstr. 4 82178 Puchheim Germany email: christian.maude...@embedded-brains.de phone: +49-89-18 94 741 - 18 fax: +49-89-18 94 741 - 08 Registergericht: Amtsgericht München Registernummer: HRB 157899 Vertretungsberechtigte Geschäftsführer: Peter

[PATCH] untar: Make behavior similar to GNU or BSD tar

2021-12-03 Thread Christian Mauderer
RTEMS untar implementation had problems with overwriting or integrating archives into existing directory structures. This patch adapts the behavior to mimic that of a GNU tar or BSD tar and extends the tar01 test to check for the behavior. That is: * If a directory structure exists, the files

Re: [rtems commit] untar: Make behavior similar to GNU or BSD tar

2021-12-09 Thread Christian MAUDERER
Hello Chris, Am 09.12.21 um 22:09 schrieb Chris Johns: On 9/12/21 6:47 pm, Christian MAUDERER wrote: Hello Chris, sorry that I haven't been clear enough. 1. The ticket #4552 that I created before sending the patch to the list and that was closed by the patch was for 5. 2. I asked

Re: [PATCH] untar: Make behavior similar to GNU or BSD tar

2021-12-07 Thread Christian MAUDERER
Hello Chris, Am 07.12.21 um 05:10 schrieb Chris Johns: On 3/12/21 11:50 pm, Christian Mauderer wrote: RTEMS untar implementation had problems with overwriting or integrating archives into existing directory structures. This patch adapts the behavior to mimic that of a GNU tar or BSD tar

Re: [rtems commit] untar: Make behavior similar to GNU or BSD tar

2021-12-08 Thread Christian MAUDERER
was this discussed? Functional changes to a release branch need to be treated carefully and in this case I would not approve it. I am sorry if I did not pick up it was for 5 as well. Thanks Chris On 9/12/21 6:21 pm, Christian Mauderer wrote: Module:rtems Branch:5 Commit

[PATCH rtems] bsps/imxrt: Add attribution in file headers

2021-07-20 Thread Christian Mauderer
Onto Innovations Incorporated originally sponsored the development of this BSP. This patch adds the attribution for it. The patch also fixes an old license header in bspstarthooks.c that was accidentally copied into that file. --- bsps/arm/imxrt/console/console.c | 1 +

Re: [PATCH rtems] bsps/imxrt: Add attribution in file headers

2021-07-21 Thread Christian MAUDERER
;User Applications" in a similar section. At the moment these are in a TBR wiki area: https://devel.rtems.org/wiki/TBR/UserApp Best regards Christian -- embedded brains GmbH Herr Christian MAUDERER Dornierstr. 4 82178 Puchheim Germany email: chris

Re: [PATCH rtems] bsps/imxrt: Add attribution in file headers

2021-07-21 Thread Christian MAUDERER
Am 21.07.21 um 09:34 schrieb Christian MAUDERER: Hello Chris, Am 21.07.21 um 09:22 schrieb Chris Johns: On 21/7/21 5:05 pm, Christian MAUDERER wrote: Hello, I don't object to clear rules. At the moment it's a bit of a mix. Yes I understand and I think the line you posted in the patch

Re: [PATCH rtems] bsps/imxrt: Add attribution in file headers

2021-07-21 Thread Christian MAUDERER
Hello Chris, Am 21.07.21 um 09:22 schrieb Chris Johns: On 21/7/21 5:05 pm, Christian MAUDERER wrote: Hello, I don't object to clear rules. At the moment it's a bit of a mix. Yes I understand and I think the line you posted in the patch is fine as is, it just needs to be separate from

Re: [PATCH rtems] bsps/imxrt: Add attribution in file headers

2021-07-21 Thread Christian MAUDERER
Am 21.07.21 um 10:31 schrieb Chris Johns: On 21/7/21 5:34 pm, Christian MAUDERER wrote: Hello Chris, Am 21.07.21 um 09:22 schrieb Chris Johns: On 21/7/21 5:05 pm, Christian MAUDERER wrote: Hello, I don't object to clear rules. At the moment it's a bit of a mix. Yes I understand and I

Re: [PATCH rtems-libbsd 0/4] Beagle BSP: USB Template Driver for CDC Ethernet

2021-07-15 Thread Christian Mauderer
Hello Husni, On 14/07/2021 20:18, Ahamed Husni wrote: Hi, Ping :) Sorry for the late reply. I hoped that someone else would review the patches. I already had a look at them before you sent them. I only found two small points. Otherwise the patches look fine. Can you fix the two points

Re: [PATCH rtems-libbsd 3/4] nexus-devices: Include CDC Ethernet for Beagle

2021-07-15 Thread Christian Mauderer
On 06/07/2021 19:00, Husni Faiz wrote: Configure bus for CDC Ethernet Include CDC Ethernet in Beagle BSP Signed-off-by: Husni Faiz --- rtemsbsd/include/bsp/nexus-devices.h | 5 + rtemsbsd/include/machine/rtems-bsd-nexus-bus.h | 17 + 2 files changed, 22

Re: ttcp only on 6-freebsd-12 and not on master of libbsd

2021-07-24 Thread Christian Mauderer
, Joel Sherrill wrote: On Sat, Jul 24, 2021, 11:30 AM Christian Mauderer <mailto:o...@c-mauderer.de>> wrote: Hello Joel, On 24/07/2021 18:18, Joel Sherrill wrote: > > > On Sat, Jul 24, 2021, 10:19 AM Christian Mauderer mailto:o...@c-mauderer.de>

Re: ttcp only on 6-freebsd-12 and not on master of libbsd

2021-07-24 Thread Christian Mauderer
Hello Joel, On 24/07/2021 22:02, Joel Sherrill wrote: On Sat, Jul 24, 2021, 1:55 PM Christian Mauderer <mailto:o...@c-mauderer.de>> wrote: Hello Joel, I wrote a short script to find different commits based on author and subject (see attached python-script).

ttcp only on 6-freebsd-12 and not on master of libbsd

2021-07-24 Thread Christian Mauderer
Hello, in a discussion with Husni I noted that the patches adding ttcp are only on the 6-freebsd-12 branch of libbsd. Is there a reason that they are not on master too? https://git.rtems.org/rtems-libbsd/commit/?h=6-freebsd-12=af06b267c5ce04e8a4a7719cb0c723ee4a27f4b4

Re: ttcp only on 6-freebsd-12 and not on master of libbsd

2021-07-24 Thread Christian Mauderer
Hello Joel, On 24/07/2021 18:18, Joel Sherrill wrote: On Sat, Jul 24, 2021, 10:19 AM Christian Mauderer <mailto:o...@c-mauderer.de>> wrote: Hello, in a discussion with Husni I noted that the patches adding ttcp are only on the 6-freebsd-12 branch

Re: [PATCH rtems-libbsd 3/4] nexus-devices: Include CDC Ethernet for Beagle

2021-07-27 Thread Christian Mauderer
Hello Husni, On 27/07/2021 17:04, Ahamed Husni wrote: On Fri, Jul 16, 2021 at 1:25 AM Christian Mauderer <mailto:o...@c-mauderer.de>> wrote: On 06/07/2021 19:00, Husni Faiz wrote: > Configure bus for CDC Ethernet > Include CDC Ethernet in Beagle BSP >

Re: [PATCH rtems-libbsd 3/4] nexus-devices: Include CDC Ethernet for Beagle

2021-07-28 Thread Christian MAUDERER
Hello Husni, Am 27.07.21 um 22:37 schrieb Ahamed Husni: Hello Christian, On Wed, Jul 28, 2021 at 12:34 AM Christian Mauderer <mailto:o...@c-mauderer.de>> wrote: Hello Husni, On 27/07/2021 17:04, Ahamed Husni wrote: > > > On Fri, Jul 16, 2021 at

[PATCH 2/2] bsp/atsam: Optionally use DMA for UART Rx

2022-01-12 Thread Christian Mauderer
If the system is busy with other interrupts and the UART is set to a fast baud rate, it's possible to loose UART interrupts and therefore characters. This allows to optionally enable a DMA for the UARTs so that a number of lost interrupts can be tolerated. The number of DMAs on this chip is

[PATCH 0/2] bsp/atsam: Merge USART and UART code and add optional Rx DMA

2022-01-12 Thread Christian Mauderer
Hello, the UART/USART of the ATSAM doesn't have any FIFO buffer. Therefore every received character has to be processed before the next one arrives. In situations with a high interrupt load or during long interrupt locks, this might not work reliable and the UART/USART can loose characters. This

[PATCH 1/2] bsp/atsam: Merge USART and UART driver

2022-01-12 Thread Christian Mauderer
If no extended features of the USART are used and if the comparison feature of the UART is not used, the two modules are compatible. The drivers were nearly identical except for some names of the defines. This patch merges the two drivers into one. Update #4577 ---

Re: [PATCH] bsp/atsam: Improve UART / USART tx performance

2022-02-15 Thread Christian MAUDERER
Thanks. I pushed it. Am 13.02.22 um 17:36 schrieb Gedare Bloom: ok for 5 and master On Fri, Feb 11, 2022 at 1:07 AM Christian Mauderer wrote: Put the next character into the send buffer if the buffer is empty and not when the last character has been sent out to the line. This improves

Re: [PATCH rtems-tools] bin2c: Add option for alignment

2022-02-15 Thread Christian MAUDERER
Thanks. I pushed it. I'll update the RTEMS source builder as soon as I have tested whether I get the hash right. Am 14.02.22 um 17:06 schrieb Joel Sherrill: I think this looks ok On Mon, Feb 14, 2022, 9:44 AM Christian Mauderer <mailto:christian.maude...@embedded-brains.de>&

[PATCH 03/40] testsuites/fstests/fsdosfsname01/create_files.cs: Convert to UNIX CR/LF.

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill This file had a mix of both DOS and UNIX CR/LF. Updates #4625. --- .../fstests/fsdosfsname01/create_files.cs | 242 +- 1 file changed, 121 insertions(+), 121 deletions(-) diff --git a/testsuites/fstests/fsdosfsname01/create_files.cs

[PATCH 24/40] bsps/include/: Scripted embedded brains header file clean up

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill Updates #4625. --- bsps/include/bsp/bootcard.h | 6 -- bsps/include/bsp/console-termios.h | 6 -- bsps/include/bsp/default-initial-extension.h | 6 -- bsps/include/bsp/fatal.h | 6 -- bsps/include/bsp/fdt.h

[PATCH 13/40] bsps/include/libchip/spi-memdrv.h: Manual file header clean up

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill Updates #4625. --- bsps/include/libchip/spi-memdrv.h | 27 ++- 1 file changed, 10 insertions(+), 17 deletions(-) diff --git a/bsps/include/libchip/spi-memdrv.h b/bsps/include/libchip/spi-memdrv.h index ed4aa55b6f..04feccc3a3 100644 ---

[PATCH 26/40] bsps/m68k: Manual file header clean up

2022-03-07 Thread Christian Mauderer
Updates #4625. --- bsps/m68k/genmcf548x/start/linkcmds.COBRA5475 | 75 +++ .../genmcf548x/start/linkcmds.m5484FireEngine | 74 +++--- .../start/linkcmds.m5484FireEngine.flash | 74 +++--- bsps/m68k/genmcf548x/start/start.S| 70

[PATCH 10/40] include/libchip/spi-flash-m25p40.h: Manual file header clean up

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill Updates #4625. --- bsps/include/libchip/spi-flash-m25p40.h | 26 + 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/bsps/include/libchip/spi-flash-m25p40.h b/bsps/include/libchip/spi-flash-m25p40.h index 2009b6fed3..fdd11f8ecf 100644

[PATCH 11/40] bsps/include/libchip/disp_hcms29xx.h: Manual file header clean up

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill Updates #4625. --- bsps/include/libchip/disp_hcms29xx.h | 32 +++- 1 file changed, 13 insertions(+), 19 deletions(-) diff --git a/bsps/include/libchip/disp_hcms29xx.h b/bsps/include/libchip/disp_hcms29xx.h index 84b74b6910..bcaf25f46e 100644 ---

[PATCH 12/40] bsps/include/libchip/spi-fram-fm25l256.h: Manual file header clean up

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill Updates #4625. --- bsps/include/libchip/spi-fram-fm25l256.h | 26 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/bsps/include/libchip/spi-fram-fm25l256.h b/bsps/include/libchip/spi-fram-fm25l256.h index a2167a3074..a2d312d268 100644

[PATCH 16/40] m68k/genmcf548x: Manual file header clean up

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill Updates #4625. --- bsps/m68k/genmcf548x/console/console.c | 71 ++ bsps/m68k/genmcf548x/include/bsp.h | 70 ++--- 2 files changed, 52 insertions(+), 89 deletions(-) diff --git a/bsps/m68k/genmcf548x/console/console.c

[PATCH 21/40] bsps/sh/: Scripted embedded brains header file clean up

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill Updates #4625. --- bsps/sh/gensh1/console/scitab.c | 6 -- bsps/sh/gensh2/console/scitab.c | 6 -- 2 files changed, 12 deletions(-) diff --git a/bsps/sh/gensh1/console/scitab.c b/bsps/sh/gensh1/console/scitab.c index 3c698f8100..37eaa5041a 100644 ---

[PATCH 23/40] bsps/m68k/: Scripted embedded brains header file clean up

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill Updates #4625. --- bsps/m68k/include/bsp/linker-symbols.h | 6 -- bsps/m68k/include/mcf548x/mcdma_glue.h | 4 ++-- bsps/m68k/include/mcf548x/mcf548x.h| 4 ++-- bsps/m68k/shared/start/linkcmds.base | 6 -- 4 files changed, 4 insertions(+), 16 deletions(-) diff

[PATCH 20/40] bsps/shared/: Scripted embedded brains header file clean up

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill Updates #4625. --- bsps/shared/dev/btimer/btimer-cpucounter.c | 6 -- bsps/shared/dev/clock/arm-generic-timer.c | 6 -- bsps/shared/dev/cpucounter/cpucounterfrequency.c | 6 -- bsps/shared/dev/cpucounter/cpucounterread.c| 6 --

[PATCH 18/40] bsps/sparc: Scripted embedded brains header file clean up

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill Updates #4625. --- bsps/sparc/leon3/start/bspclean.c | 6 -- bsps/sparc/leon3/start/cache.c | 6 -- bsps/sparc/leon3/start/cpucounter.c | 6 -- 3 files changed, 18 deletions(-) diff --git a/bsps/sparc/leon3/start/bspclean.c

[PATCH 08/40] m68k/genmcf548x/README: Manual file header clean up

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill Updates #4625. --- bsps/m68k/genmcf548x/README | 58 + 1 file changed, 20 insertions(+), 38 deletions(-) diff --git a/bsps/m68k/genmcf548x/README b/bsps/m68k/genmcf548x/README index 416601a2f2..7a2fc508c7 100644 ---

[PATCH 09/40] powerpc/mpc55xxevb: Manual file header clean up

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill Updates #4625. --- bsps/powerpc/mpc55xxevb/include/mpc55xx/fsl-mpc555x.h | 6 -- bsps/powerpc/mpc55xxevb/include/mpc55xx/fsl-mpc556x.h | 6 -- bsps/powerpc/mpc55xxevb/include/mpc55xx/fsl-mpc567x.h | 6 -- 3 files changed, 18 deletions(-) diff --git

[PATCH 01/40] License Header Clean Up

2022-03-07 Thread Christian Mauderer
Hello, during the re-license efforts, Joel noted that there are a lot of really odd old headers from people at embedded brains. We joined efforts to clean them up. After this patch series, we should have removed most of these odd headers. Please don't hesitate to point out any mistakes that I

[PATCH 05/40] libmisc/serdbg: Manual header clean up

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill Updates #4625. --- cpukit/libi2c/libi2c.c | 2 +- cpukit/libmisc/serdbg/serdbgio.c | 38 ++ cpukit/libmisc/serdbg/termios_printk.c | 36 ++-- 3 files changed, 30 insertions(+), 46 deletions(-) diff --git

[PATCH 02/40] bsps/m68k/genmcf548x/README: Manual cleanup of embedded brains File Headers

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill Updates #4625. --- bsps/m68k/genmcf548x/README | 8 +--- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/bsps/m68k/genmcf548x/README b/bsps/m68k/genmcf548x/README index 13994eb167..416601a2f2 100644 --- a/bsps/m68k/genmcf548x/README +++

[PATCH 04/40] telnetd.c: Manual cleanup of embedded brains File Headers

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill This file's text looked different from others. Fixed by hand. Updates #4625. --- cpukit/telnetd/telnetd.c | 6 -- 1 file changed, 6 deletions(-) diff --git a/cpukit/telnetd/telnetd.c b/cpukit/telnetd/telnetd.c index 7dad2f2f92..8d3a488ee6 100644 ---

[PATCH 07/40] m68k/gen68360/spi/m360_spi.c: Manual file header clean up

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill Updates #4625. --- bsps/m68k/gen68360/spi/m360_spi.c | 31 +-- 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/bsps/m68k/gen68360/spi/m360_spi.c b/bsps/m68k/gen68360/spi/m360_spi.c index f60b5b6a51..07bcdf8daf 100644 ---

[PATCH 01/40] testsuites/.../*doc: Manual cleanup of embedded brains File Headers

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill There were not a lot of these and they did not match the patterns of the C. Updates #4625. --- testsuites/libtests/block01/block01.doc| 7 +-- testsuites/libtests/block02/block02.doc| 7 +-- testsuites/libtests/block03/block03.doc| 7

[PATCH 36/40] bsps/powerpc/gen83xx/start/cpuinit.c: Manual Header clean up

2022-03-07 Thread Christian Mauderer
There is not really anything left from the referenced cpuinit.c file from MPC8260ads CPU initialization. So ignore that part of the header during rework. Update #4625. --- bsps/powerpc/gen5200/start/cpuinit.c | 80 +-- bsps/powerpc/gen83xx/start/cpuinit.c | 82

[PATCH 38/40] cpukit: Automated IMD header file clean up

2022-03-07 Thread Christian Mauderer
Use the same form of IMD in all copyright lines Update #4625. --- cpukit/include/rtems/fsmount.h| 2 +- cpukit/include/rtems/ftpfs.h | 2 +- cpukit/include/rtems/serdbg.h | 2 +- cpukit/include/rtems/serdbgcnf.h | 2 +-

[PATCH 17/40] m68k/genmcf548x/: Manual file header clean up

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill Updates #4625. --- bsps/m68k/genmcf548x/btimer/btimer.c | 72 +++ bsps/m68k/genmcf548x/clock/clock.c| 70 +++--- bsps/m68k/genmcf548x/include/bsp/irq.h| 6 -- .../genmcf548x/irq/intc-icr-init-values.c | 6 --

[PATCH 19/40] bsps/arm/: Scripted embedded brains header file clean up

2022-03-07 Thread Christian Mauderer
From: Joel Sherrill Updates #4625. --- bsps/arm/altera-cyclone-v/console/console-config.c| 6 -- bsps/arm/altera-cyclone-v/i2c/i2cdrv-config.c | 6 -- bsps/arm/altera-cyclone-v/i2c/i2cdrv-config.h | 6 -- bsps/arm/altera-cyclone-v/i2c/i2cdrv.c| 6

<    8   9   10   11   12   13   14   15   16   >