Re: [PATCH] build: Use -frandom-seed=0

2024-02-28 Thread Sebastian Huber
On 29.02.24 00:29, Chris Johns wrote: On 28/2/2024 6:24 pm, Sebastian Huber wrote: On 28.02.24 06:34, Chris Johns wrote: The manual says:    The string can either be a number (decimal, octal or hex) or    an arbitrary string (in which case it’s converted to a number by    computing CRC32).

Re: [RTEMS Tools 1/4] linkers: Avoid void pointer arithmetic

2024-02-28 Thread Chris Johns
OK too all and thanks Chris On 26/2/2024 8:41 pm, Sebastian Huber wrote: > --- > linkers/rtems-syms.cpp | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/linkers/rtems-syms.cpp b/linkers/rtems-syms.cpp > index f0ac2bb..9fe552e 100644 > --- a/linkers/rtems-syms.cpp

Re: [PATCH] build: Use -frandom-seed=0

2024-02-28 Thread Chris Johns
On 28/2/2024 6:24 pm, Sebastian Huber wrote: > On 28.02.24 06:34, Chris Johns wrote: >> The manual says: >> >>    The string can either be a number (decimal, octal or hex) or >>    an arbitrary string (in which case it’s converted to a number by >>    computing CRC32). >> >>    The string should

Re: [RFC] libdl: Make Elf_Sym::st_other available

2024-02-28 Thread Chris Johns
On 27/2/2024 6:46 pm, Sebastian Huber wrote: > The 64-bit PowerPC ELFv2 relocation support needs access to the > Elf_Sym::st_other symbol information. The machine-specific relocation handler > had only access to the Elf_Sym::st_info symbol information. This change > extends the 8-bit syminfo

Re: [Tools] add libiberty/argv.c for mingw32 build

2024-02-28 Thread Chris Johns
OK Thanks Chris On 28/2/2024 7:25 pm, Sebastian Huber wrote: > From: zhengxiaojun > > Signed-off-by: zhengxiaojun > > Close #4974. > --- > rtemstoolkit/wscript | 10 -- > 1 file changed, 4 insertions(+), 6 deletions(-) > > diff --git a/rtemstoolkit/wscript b/rtemstoolkit/wscript >

Re: [PATCH 4/6] build: Add support to make bootloader images

2024-02-28 Thread Chris Johns
On 28/2/2024 6:44 pm, Sebastian Huber wrote: > On 28.02.24 06:48, Chris Johns wrote: >> Hi, >> >> Is this to allow BSP ready output to be created from the build system? > > Yes, this is the goal. Nice and thanks for looking into this. >> If it is will the details be exported in the pkgconfig

[PATCH rtems-lwip] rtemslwip: Add gethostbyname wrapper

2024-02-28 Thread Kinsey Moore
Applications and libraries compiled without the benefit of the lwIP headers may require gethostbyname() instead of lwip_gethostbyname(). This wrapper allows those applicationns and libraries to link properly. --- rtemslwip/common/network_compat.c | 6 ++ 1 file changed, 6 insertions(+) diff

Re: Patch with modified hello world

2024-02-28 Thread Kinsey Moore
Hi Seif, Could you also provide a screenshot of the example running? This is part of the requirements as per https://devel.rtems.org/wiki/GSoC Thanks, Kinsey On Mon, Feb 26, 2024 at 12:26 PM Seif Alrahman Ahmed Mohamed Alfakharany < seifelfakharany011434...@gmail.com> wrote: > >

[PATCH 1/2] cpukit/libtest: Remove unused variable

2024-02-28 Thread Kinsey Moore
This unused variable causes a warning. It is never set or used. --- cpukit/libtest/testgcovdumpinfo.c | 1 - 1 file changed, 1 deletion(-) diff --git a/cpukit/libtest/testgcovdumpinfo.c b/cpukit/libtest/testgcovdumpinfo.c index 1f32ceafcb..9687280e21 100644 ---

[PATCH 2/2] testsuites/dhrystone: Initialize before use

2024-02-28 Thread Kinsey Moore
This resovles a warning where a variable could be used before it is initialized in some code paths. --- testsuites/benchmarks/dhrystone/dhry_1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsuites/benchmarks/dhrystone/dhry_1.c b/testsuites/benchmarks/dhrystone/dhry_1.c

Re: [PATCH 0/2] GSOC: ​Hello World exercise

2024-02-28 Thread Kinsey Moore
Thanks for taking this step toward participating in GSoC! I took a look at the images in the binary patch and they look good. If you need to send more images in the future, please use a link instead of sharing them in a binary patch. Kinsey On Wed, Feb 28, 2024 at 2:33 AM Ning Yang wrote: >

[PATCH rtems-libbsd] freebsd/mmcsd: Disable on-device cache usage

2024-02-28 Thread Kinsey Moore
This disables any usage of the on-device R/W cache since all device cache maintenance functions are compiled out under RTEMS leaving no way to flush the cache before system reset and making data loss possible. --- freebsd/sys/dev/mmc/mmcsd.c | 6 ++ 1 file changed, 6 insertions(+) diff --git

[PATCH 0/2] GSOC: ​Hello World exercise

2024-02-28 Thread Ning Yang
Hello, My name is Yang Ning, a computer science master's student at China Yanshan University.My research chiefly focuses on RTEMS. This is my first contact with operating system-related projects. I have been study RTEMS on RPi4 for half year. During the half year,I configured and builded RTEMS

[PATCH 1/2] hello world exercise

2024-02-28 Thread Ning Yang
--- hello/hello.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello/hello.c b/hello/hello.c index d2321d8..e074563 100644 --- a/hello/hello.c +++ b/hello/hello.c @@ -8,6 +8,6 @@ rtems_task Init( rtems_task_argument ignored) { - puts("hello, world!"); +

[Tools] add libiberty/argv.c for mingw32 build

2024-02-28 Thread Sebastian Huber
From: zhengxiaojun Signed-off-by: zhengxiaojun Close #4974. --- rtemstoolkit/wscript | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/rtemstoolkit/wscript b/rtemstoolkit/wscript index 20b1047..0611e2e 100644 --- a/rtemstoolkit/wscript +++ b/rtemstoolkit/wscript

Re: [Tools] rtemstoolkit/libierty: Add missing file

2024-02-28 Thread Sebastian Huber
On 28.02.24 08:20, zhengxiaojun wrote: The patch close #4974. Sorry, I didn't notice this ticket. I will rebase your patch to the current master since the build system part is an improvement. -- embedded brains GmbH & Co. KG Herr Sebastian HUBER Dornierstr. 4 82178 Puchheim Germany email: