Re: Finished Hello World Example

2024-04-02 Thread Joel Sherrill
This patch looks ok. We also need a screenshot of it running. I hope you made the deadline of applying via the Google site. We track proposals at https://devel.rtems.org/wiki/GSoC/2024 On Tue, Apr 2, 2024 at 2:47 PM SEAN TANG wrote: > > ___ > devel m

Finished Hello World Example

2024-04-02 Thread SEAN TANG
From a580cedc186d11ab6fc8ca4329404bf8e6e64dd3 Mon Sep 17 00:00:00 2001 From: Sean Tang Date: Tue, 2 Apr 2024 02:13:32 -0700 Subject: [PATCH] Finished Hello World Example --- testsuites/samples/hello/init.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/testsuites

[PATCH 1/1] Modify hello world sample for GSoC task

2024-03-20 Thread Abhinav Srivastava
@@ static rtems_task Init( { rtems_print_printer_fprintf_putc(&rtems_test_printer); TEST_BEGIN(); - printf( "Hello World\n" ); + printf( "Oh, Hi Mark.\n" ); TEST_END(); rtems_test_exit( 0 ); } -- 2.34.1 ___

[PATCH] GSoC Hello World

2024-03-20 Thread Samuel Pires
@@ static rtems_task Init( { rtems_print_printer_fprintf_putc(&rtems_test_printer); TEST_BEGIN(); - printf( "Hello World\n" ); + printf( "Hello World from GSoC!\n" ); TEST_END(); rtems_test_exit( 0 ); } -- 2.34.1 __

Re: Hello World

2024-03-15 Thread Muhammad Hamdy
has...@gmail.com> wrote:Hello,It's Mohamed "7amzy" on discord, I'm a master student in robotics from Egypt. I just finished the Hello World example, then I changed the message as requested. I'm interested in open-source contribution, embedded software, and

Subject: [PATCH] changing the hello world message.

2024-03-15 Thread Muhammad Hamdy
--- hello.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.c b/hello.c index 622a9da..d78f5dd 100644 --- a/hello.c +++ b/hello.c @@ -9,6 +9,6 @@ rtems_task Init( rtems_task_argument ignored ) { - printf( "\nHello From Cairo, its me Hamzy\n" ); + printf( "\nHello F

[PATCH] modified code for hello world exercise

2024-03-14 Thread alessandronardin
@@ static rtems_task Init( { rtems_print_printer_fprintf_putc(&rtems_test_printer); TEST_BEGIN(); - printf( "Hello World\n" ); + printf( "Hello World, i modified this line of code\n" ); TEST_END(); rtems_test_

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

2024-03-02 Thread Gedare Bloom
>> I'm still reading the existing RPi4 BSP code.And I'm interested in porting >> USB3.0.Freebsd already supports usb3.0 of RPi4 ( >> https://reviews.freebsd.org/D25068 ). I just need to integrate it into >> libbsd. >> >> discord: @yangn0 >>

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: > >

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

2024-02-28 Thread Kinsey Moore
s://reviews.freebsd.org/D25068 ). I just need to integrate it into > libbsd. > > discord: @yangn0 > github: https://github.com/yangn0 > blog: https://blog.csdn.net/qq_41058067 > > Ning Yang (2): > hello world exercise > helloworld & gdb screen snapshot > > hello/

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

2024-02-28 Thread Ning Yang
ibbsd. discord: @yangn0 github: https://github.com/yangn0 blog: https://blog.csdn.net/qq_41058067 Ning Yang (2): hello world exercise helloworld & gdb screen snapshot hello/gdb.png | Bin 0 -> 414373 bytes hello/hello.c | 2 +- hello/hello.png | Bin 0 -> 37259 bytes 3 files c

[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!"); + p

Patch with modified hello world

2024-02-26 Thread Seif Alrahman Ahmed Mohamed Alfakharany
SeifalrahmanAhmedAlfakharany.patch Description: Binary data ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel

[PATCH] Hello World Task

2023-03-26 Thread Aryan Karawale
inter); TEST_BEGIN(); - printf( "Hello World\n" ); + printf( "Hello World from aryan \n" ); TEST_END(); rtems_test_exit( 0 ); } -- 2.25.1 ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel

[PATCH 0/1] GSOC Contributor Hello World Exercise

2023-03-23 Thread David Gumberg
Hi all, My name is David Gumberg and I am an open-source software contributor and enthusiast. I am hoping to be able to contribute to RTEMS as a part of GSOC 2023. I am very interested in firmware, microelectronics, and alternative hardware platforms. I am interested in working on improving the PO

Re: [PATCH 1/1] change hello world

2023-03-19 Thread Gedare Bloom
>> @@ -41,7 +41,7 @@ static rtems_task Init( >> { >>rtems_print_printer_fprintf_putc(&rtems_test_printer); >>TEST_BEGIN(); >> - printf( "Hello World\n" ); >> + printf( "Hello from The Dark Side!\n" ); >>TEST_END(); >>

Re: [PATCH 1/1] change hello world

2023-03-19 Thread Noriyuki Kurosu
amples/hello/init.c > index 83f6342ab3..53e8a52506 100644 > --- a/testsuites/samples/hello/init.c > +++ b/testsuites/samples/hello/init.c > @@ -41,7 +41,7 @@ static rtems_task Init( > { >rtems_print_printer_fprintf_putc(&rtems_test_printer); >TEST_BEGIN(); > - printf( &q

[PATCH 1/1] change hello world

2023-03-19 Thread norifxsc
/hello/init.c @@ -41,7 +41,7 @@ static rtems_task Init( { rtems_print_printer_fprintf_putc(&rtems_test_printer); TEST_BEGIN(); - printf( "Hello World\n" ); + printf( "Hello from The Dark Side!\n" ); TEST_END(); rtems_test_

Re: GSoC Hello World Test Completed

2023-02-28 Thread Joel Sherrill
ed the GSoC Hello World Test as required, please > see the screenshots below as confirmation. Please tell me if I have done > correctly. > > Thanking you, > Siddharth Khattar > ___ > devel mailing list > devel@rtems.org > http://

Re: [PATCH 1/1] Updated Hello World

2023-02-10 Thread Gedare Bloom
Hi Prakhar, On Thu, Feb 9, 2023 at 12:42 AM prakhar wrote: > > From: Prakhar > Please use your legal name in the git-config user.name metadata for proper code attribution purposes. Usually the email doesn't get injected in the patch. I'm not sure what's going on with that. > --- > hello.c | 2

[PATCH 1/1] Updated Hello World

2023-02-08 Thread prakhar
From: Prakhar --- hello.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.c b/hello.c index f0b662c..72d1dd4 100644 --- a/hello.c +++ b/hello.c @@ -9,6 +9,6 @@ rtems_task Init( rtems_task_argument ignored ) { - printf( "\nHello RTEMS from India!\n" ); + printf( "

Re: [PATCH 1] Changed Hello World

2023-02-08 Thread Gedare Bloom
nt messes up formatting > which helps with applying patches again. > +1 Meanwhile, Prakhar, you can send me and j...@rtems.org a screenshot of you running your modified hello world in a simulator to complete the GSoC Getting Started (assuming that's what this is) > Best regards

Re: [PATCH 1] Changed Hello World

2023-02-07 Thread Christian MAUDERER
Hello Prakhar, that looks suspiciously like a HTML mail (or rather a mixed mode mail). How did you send that patch? Usually it's best to use git send-email to send patches to the list so that no mail client messes up formatting which helps with applying patches again. Best regards Christian

[PATCH 1] Changed Hello World

2023-02-07 Thread Prakhar Agrawal
From: Prakhar Date: Tue, 7 Feb 2023 13:43:09 +0530 Subject: [PATCH 4/4] updated hello.c --- hello.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.c b/hello.c index 72d1dd4..a3c40ae 100644 --- a/hello.c +++ b/hello.c @@ -9,6 +9,6 @@ rtems_task Init( rtems_task_argum

Re: [PATCH 1/1] Modified Hello World

2023-02-03 Thread Gedare Bloom
ello/init.c b/testsuites/samples/hello/init.c > index 83f6342ab3..575d6e4c46 100644 > --- a/testsuites/samples/hello/init.c > +++ b/testsuites/samples/hello/init.c > @@ -41,7 +41,7 @@ static rtems_task Init( > { >rtems_print_printer_fprintf_putc(&rtems_test_printer);

[PATCH 1/1] Modified Hello World

2023-01-31 Thread Jviraj
/init.c @@ -41,7 +41,7 @@ static rtems_task Init( { rtems_print_printer_fprintf_putc(&rtems_test_printer); TEST_BEGIN(); - printf( "Hello World\n" ); + printf( "Hello! This is Viraj from the dark side!\n" ); TEST_END(); rtems_test_

[PATCH] Gsoc beginners Hello world Prove

2022-10-30 Thread wungfuh
@@ -41,7 +41,7 @@ static rtems_task Init( { rtems_print_printer_fprintf_putc(&rtems_test_printer); TEST_BEGIN(); - printf( "Hello World\n" ); + printf( "Welcome into the Deep\n" ); TEST_END(); rtems_test_exit( 0 ); } -- 2.38.1 _

Re: Successful Hello world from RPi4B AArch64 over serial

2022-09-20 Thread Noor Aman
> > > Try the fileio, cdtest, nsecs, and paranoia samples next. If those > look ok, it is highly likely that most of the single processor tests > will run. > > fileio requires working console input. > I've tried them all, they look pretty fine. Fileio worked fine too. Now work to get this all cle

Re: Successful Hello world from RPi4B AArch64 over serial

2022-09-19 Thread Joel Sherrill
her peripherals from previous Pi generations the same? Curious if wired networking might be low hanging fruit. --joel > Alan > > > > *From: *Noor Aman > *Sent: *Monday, September 19, 2022 11:11 AM > *To: *William Moore ; Alan Cudmore > ; Hesham Moustafa ; > rtems-de..

RE: Successful Hello world from RPi4B AArch64 over serial

2022-09-19 Thread Alan Cudmore
: Successful Hello world from RPi4B AArch64 over serial Hey everyone, I've managed to get RTEMS6 on the Raspberry pi 4B rev 1.4. Every test ran fine except for minimum.exe, It gave a fatal error. Here's my setup for running RTEMS6 on RPi4B: TF-A is required to enable GIC on RPi. I had tried to u

Re: Successful Hello world from RPi4B AArch64 over serial

2022-09-19 Thread Alan Cudmore
Great progress Noor! I will try your branch today. Alan On Mon, Sep 19, 2022 at 12:15 PM Joel Sherrill wrote: > > > On Mon, Sep 19, 2022 at 10:11 AM Noor Aman wrote: > >> Hey everyone, >> I've managed to get RTEMS6 on the Raspberry pi 4B rev 1.4. Every test ran >> fine except for minimum.exe, I

Re: Successful Hello world from RPi4B AArch64 over serial

2022-09-19 Thread Joel Sherrill
On Mon, Sep 19, 2022 at 10:11 AM Noor Aman wrote: > Hey everyone, > I've managed to get RTEMS6 on the Raspberry pi 4B rev 1.4. Every test ran > fine except for minimum.exe, It gave a fatal error. > Congratulations! Hoozah! minimum.exe is supposed to reflect the smallest application you can have

Successful Hello world from RPi4B AArch64 over serial

2022-09-19 Thread Noor Aman
Hey everyone, I've managed to get RTEMS6 on the Raspberry pi 4B rev 1.4. Every test ran fine except for minimum.exe, It gave a fatal error. Here's my setup for running RTEMS6 on RPi4B: TF-A is required to enable GIC on RPi. I had tried to use armstub-gic.S ( https://github.com/raspberrypi/tools/b

Re: [PATCH] added print statement to hello world example

2022-04-13 Thread Joel Sherrill
42,7 @@ static rtems_task Init( >rtems_print_printer_fprintf_putc(&rtems_test_printer); > TEST_BEGIN(); >printf( "Hello World\n" ); > + printf( "Hello from Duc\n" ); >TEST_END(); >rtems_test_exit( 0 ); > } > -- > 2.25.1 > > __

[PATCH] added print statement to hello world example

2022-04-13 Thread Duc Doan
rtems_task Init( rtems_print_printer_fprintf_putc(&rtems_test_printer); TEST_BEGIN(); printf( "Hello World\n" ); + printf( "Hello from Duc\n" ); TEST_END(); rtems_test_exit( 0 ); } -- 2.25.1 ___ devel mailing l

Re: GSoC: Hello World Patch

2022-03-29 Thread Joel Sherrill
projects you are interested in here or Discord. >> >> On Mon, Mar 28, 2022 at 1:10 PM Kamlesh Bharodiya < >> brkamleshg...@gmail.com> wrote: >> >>> Hi, >>> >>> I would like to participate in the GSoC 2022 Program. I have built and >>>

Re: GSoC: Hello World Patch

2022-03-28 Thread Joel Sherrill
t; > I would like to participate in the GSoC 2022 Program. I have built and run > the Hello World Program. Please find below: (also attaching the patch) > > commit bdd1ae76926135fbadc7920eefe6a303342e4a19 (HEAD -> master) > Author: Kamlesh_Bharodiya > Date: Sun Mar 27 22:22:47

GSoC: Hello World Patch

2022-03-28 Thread Kamlesh Bharodiya
Hi, I would like to participate in the GSoC 2022 Program. I have built and run the Hello World Program. Please find below: (also attaching the patch) commit bdd1ae76926135fbadc7920eefe6a303342e4a19 (HEAD -> master) Author: Kamlesh_Bharodiya Date: Sun Mar 27 22:22:47 2022 +0530 [GSoC En

Re: GSoC-2022 Hello-World Project for BeagleBone Black

2022-03-14 Thread Joel Sherrill
Congratulations! Send me and gedare@ your snapshot and diff privately or via Discord. You also need to add yourself to the table of interested folks https://devel.rtems.org/wiki/GSoC/2022 On Mon, Mar 14, 2022 at 10:39 AM Prashanth S wrote: > Hi All, > > This is to send the Hello-Worl

GSoC-2022 Hello-World Project for BeagleBone Black

2022-03-14 Thread Prashanth S
Hi All, This is to send the Hello-World Project for BeagleBone Black BSP. I am Prashanth S a working professional with experience of 3 years and 6 months. I wanted to be part of open source community especially contributing RTOS, by taking GSoC-2022 as an opportunity I like to contribute to

Re: hello world with devfs has no output

2022-03-09 Thread Ryan Long
On 3/7/2022 10:33 AM, Sebastian Huber wrote: On 07/03/2022 16:18, Joel Sherrill wrote: On Mon, Mar 7, 2022 at 12:46 AM Sebastian Huber > wrote:     On 03/03/2022 00:06, Joel Sherrill wrote: > What's the missing capability now in devfs? This u

Re: hello world with devfs has no output

2022-03-07 Thread Sebastian Huber
On 07/03/2022 16:18, Joel Sherrill wrote: On Mon, Mar 7, 2022 at 12:46 AM Sebastian Huber > wrote: On 03/03/2022 00:06, Joel Sherrill wrote: > What's the missing capability now in devfs? This used to work. Is this problem detected by o

Re: hello world with devfs has no output

2022-03-07 Thread Joel Sherrill
On Mon, Mar 7, 2022 at 12:46 AM Sebastian Huber < sebastian.hu...@embedded-brains.de> wrote: > On 03/03/2022 00:06, Joel Sherrill wrote: > > What's the missing capability now in devfs? This used to work. > > Is this problem detected by one of the testsuites/libtests/devfs* tests? > If not, could y

Re: hello world with devfs has no output

2022-03-06 Thread Sebastian Huber
On 03/03/2022 00:06, Joel Sherrill wrote: What's the missing capability now in devfs? This used to work. Is this problem detected by one of the testsuites/libtests/devfs* tests? If not, could you add a test case which shows the problem? -- embedded brains GmbH Herr Sebastian HUBER Dornierstr

hello world with devfs has no output

2022-03-02 Thread Joel Sherrill
Hi What's the missing capability now in devfs? This used to work. Thanks. --joel ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel

Re: [PATCH 1/1] Edited hello world message in init.c as prerequisite for GSOC application.

2021-03-15 Thread Gedare Bloom
8fd52b 100644 > --- a/testsuites/samples/hello/init.c > +++ b/testsuites/samples/hello/init.c > @@ -22,7 +22,7 @@ static rtems_task Init( > { >rtems_print_printer_fprintf_putc(&rtems_test_printer); >TEST_BEGIN(); > - printf( "Hello World\n" ); > + printf(

[Screenshot] Matt Joyce GSOC Hello World Patch

2021-03-15 Thread Matthew Joyce
Hello RTEMS Community, Please find my attached screenshot for the GSOC Hello World introduction. Thank you again for your time! Sincerely, Matt ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel

[PATCH 1/1] Edited hello world message in init.c as prerequisite for GSOC application.

2021-03-15 Thread Matt Joyce
@@ static rtems_task Init( { rtems_print_printer_fprintf_putc(&rtems_test_printer); TEST_BEGIN(); - printf( "Hello World\n" ); + printf("Hello RTEMS World! From Matt Joyce, GSOC 2021 Applicant.\n"); TEST_END(); rtems_test_

[PATCH 0/1] Matt Joyce GSOC Hello World Patch

2021-03-15 Thread Matt Joyce
Hello RTEMS Community! Please see my Hello World patch as per the GSOC instructions. Thank you very much for your time and I'm excited to join you! Sincerely, Matt Matt Joyce (1): Edited hello world message in init.c as prerequisite for GSOC application. testsuites/samples/hello/i

Re: [PATCH 1/1] Hello World - Ida's proof to work on rtems

2021-03-14 Thread Ida Delphine
4 > > --- a/testsuites/samples/hello/init.c > > +++ b/testsuites/samples/hello/init.c > > @@ -22,7 +22,7 @@ static rtems_task Init( > > { > >rtems_print_printer_fprintf_putc(&rtems_test_printer); > >TEST_BEGIN(); > > - printf( "Hello World\n" ); > > + pr

Re: [PATCH 1/1] Hello World - Ida's proof to work on rtems

2021-03-14 Thread Gedare Bloom
/samples/hello/init.c > index 34ded37c55..fa581fd447 100644 > --- a/testsuites/samples/hello/init.c > +++ b/testsuites/samples/hello/init.c > @@ -22,7 +22,7 @@ static rtems_task Init( > { >rtems_print_printer_fprintf_putc(&rtems_test_printer); >TEST_BEGIN(); > - pri

Re: [PATCH 1/1] Hello World - Ida's proof to work on rtems

2021-03-12 Thread Ida Delphine
c > @@ -22,7 +22,7 @@ static rtems_task Init( > { >rtems_print_printer_fprintf_putc(&rtems_test_printer); >TEST_BEGIN(); > - printf( "Hello World\n" ); > + printf( "Hello World, I'm Ida Deslphine and this is th main proof I can > officially work

[PATCH 1/1] Hello World - Ida's proof to work on rtems

2021-03-12 Thread Ida Delphine
/init.c index 34ded37c55..fa581fd447 100644 --- a/testsuites/samples/hello/init.c +++ b/testsuites/samples/hello/init.c @@ -22,7 +22,7 @@ static rtems_task Init( { rtems_print_printer_fprintf_putc(&rtems_test_printer); TEST_BEGIN(); - printf( "Hello World\n" ); + printf( "H

Re: [PATCH] Modified Hello World task by Prateek

2021-02-09 Thread Prateek Pardeshi
ello/init.c > index 34ded37c55..47ac4b27d2 100644 > --- a/testsuites/samples/hello/init.c > +++ b/testsuites/samples/hello/init.c > @@ -14,7 +14,7 @@ > #include > #include > > -const char rtems_test_name[] = "HELLO WORLD"; > +const char rtems_t

[PATCH] Modified Hello World task by Prateek

2021-02-09 Thread Prateek Pardeshi
/testsuites/samples/hello/init.c @@ -14,7 +14,7 @@ #include #include -const char rtems_test_name[] = "HELLO WORLD"; +const char rtems_test_name[] = "HELLO OPEN SOURCE WORLD"; static rtems_task Init( rtems_task_argument ignored @@ -22,7 +22,50 @@ st

Re: [PATCH] Modified Hello World task by Prateek

2021-02-09 Thread Gedare Bloom
etions(-) > > diff --git a/testsuites/samples/hello/init.c b/testsuites/samples/hello/init.c > index 34ded37c55..47ac4b27d2 100644 > --- a/testsuites/samples/hello/init.c > +++ b/testsuites/samples/hello/init.c > @@ -14,7 +14,7 @@ > #include > #include > > -const

Hello World Program proof

2021-02-08 Thread Prateek Pardeshi
Hello everyone, I was busy with exams lately, and now I've resolved the errors which I faced during the RTEMS setup on my machine. I've attached the program of "Hello World" with this email. If anyone needs help regarding RTEMS setup can reach out to me, I would be happy t

Re: Completed Hello World task

2021-02-08 Thread Gedare Bloom
On Mon, Feb 8, 2021 at 10:37 AM Sanskar Khandelwal wrote: > Hello gedare, > > As you asked, I have sent you Hello world Patch with the subject name > "Sanskar's Modified Hello World" please check it and let me know. > > I went through the project list and sele

Re: Hello World Program proof

2021-02-08 Thread Gedare Bloom
58 AM Prateek Pardeshi wrote: > Hello everyone, I was busy with exams lately, and now I've resolved the > errors which I faced during the RTEMS setup on my machine. > I've attached the program of "Hello World" with this email. > > If anyone needs help regarding

Re: Completed Hello World task

2021-02-08 Thread Sanskar Khandelwal
Hello gedare, As you asked, I have sent you Hello world Patch with the subject name "Sanskar's Modified Hello World" please check it and let me know. I went through the project list and selected a few projects which I found interesting. 1. #4162 : SiFive RISC-V HiFive Unleash

[PATCH] Sanskar's Modified Hello World

2021-02-08 Thread kdsanskar07
From: Sanskar Khandelwal Hello everyone, My name is sanskar khandelwal, I have completed the hello world task, please let me know if there is anything to change in this task. --- testsuites/samples/hello/init.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testsuites

Re: Completed Hello World task

2021-02-06 Thread Gedare Bloom
ity within that category. Gedare On Sat, Feb 6, 2021 at 6:21 AM Sanskar Khandelwal wrote: > > Hello everyone, > My name is Sanskar Khandelwal. I want to contribute on rtems projects. > I have completed the Hello world task. You guys can check the screenshot > below. > But I am a littl

Re: hello world project

2021-02-03 Thread Gedare Bloom
Thanks, please send me a git patch of your modification. On Wed, Feb 3, 2021 at 10:40 AM Ayushman Mishra wrote: > Good evening everyone Ayushman here, > I modified the program present in > $HOME/quick-start/src/rtems/build/sparc/erc32/testsuites/samples/hello.exe > by changing the init.c file i

Re: Unable to use make command to build "Hello world" Program

2021-02-03 Thread Niteesh G. S.
mmand "Waf: Leaving directory > `/home/rohan/devlopment/src/rtems/build/sparc/erc32' > " this was the final output as you said. > > But I am actually stuck in running Hello world program > > https://docs.rtems.org/branches/master/user/start/gsoc.html#prove-you-can-work

Re: Unable to use make command to build "Hello world" Program

2021-02-03 Thread Rohan kumar
d/sparc/erc32' >> " this was the final output as you said. >> >> But I am actually stuck in running Hello world program >> https://docs.rtems.org/branches/master/user/start/gsoc.html#prove-you-can-work-on-rtems >> this >> document says to run "make&q

Re: Unable to use make command to build "Hello world" Program

2021-02-03 Thread Joel Sherrill
; > Also yes when I run "./waf" command "Waf: Leaving directory > `/home/rohan/devlopment/src/rtems/build/sparc/erc32' > " this was the final output as you said. > > But I am actually stuck in running Hello world program > https://docs.rtems.org/branches/maste

Re: Unable to use make command to build "Hello world" Program

2021-02-03 Thread Rohan kumar
evlopment/src/rtems/build/sparc/erc32' " this was the final output as you said. But I am actually stuck in running Hello world program https://docs.rtems.org/branches/master/user/start/gsoc.html#prove-you-can-work-on-rtems this document says to run "make" command but the folder

Re: Unable to use make command to build "Hello world" Program

2021-02-03 Thread Joel Sherrill
On Wed, Feb 3, 2021, 6:43 AM Rohan kumar wrote: > Hello all, > I am trying to run Hello World program but when run the command "make" to > build, the error came "make: *** No targets specified and no makefile > found. Stop". Actually there is nothing in the &q

Unable to use make command to build "Hello world" Program

2021-02-03 Thread Rohan kumar
Hello all, I am trying to run Hello World program but when run the command "make" to build, the error came "make: *** No targets specified and no makefile found. Stop". Actually there is nothing in the "/build/b-erc32" folder its just empty and also there in t

Re: [PATCH 2/2] user: Use consitent Hello World spelling

2020-03-27 Thread Sebastian Huber
On 2020-03-27 18:00, Gedare Bloom wrote: On Fri, Mar 27, 2020 at 10:59 AM Joel Sherrill wrote: Good idea Gedare. And consitent should be consistent. I wasn't going to complain about typos in the commit message :) There's another typo in the other one too. Ok, time for the week end. __

Re: [PATCH 2/2] user: Use consitent Hello World spelling

2020-03-27 Thread Gedare Bloom
edare Bloom wrote: >> >> ok, maybe we also want to have a Hello World glossary item? >> >> On Fri, Mar 27, 2020 at 2:03 AM Sebastian Huber >> wrote: >> > >> > --- >> > user/exe/initialization.rst | 2 +- >> > user/start/app.rst

Re: [PATCH 2/2] user: Use consitent Hello World spelling

2020-03-27 Thread Joel Sherrill
Good idea Gedare. And consitent should be consistent. On Fri, Mar 27, 2020 at 10:41 AM Gedare Bloom wrote: > ok, maybe we also want to have a Hello World glossary item? > > On Fri, Mar 27, 2020 at 2:03 AM Sebastian Huber > wrote: > > > > --- > > user/exe/initi

Re: [PATCH 2/2] user: Use consitent Hello World spelling

2020-03-27 Thread Gedare Bloom
ok, maybe we also want to have a Hello World glossary item? On Fri, Mar 27, 2020 at 2:03 AM Sebastian Huber wrote: > > --- > user/exe/initialization.rst | 2 +- > user/start/app.rst | 4 ++-- > user/tools/boot-image.rst | 2 +- > user/tools/tester.rst | 2 +-

[PATCH 2/2] user: Use consitent Hello World spelling

2020-03-27 Thread Sebastian Huber
following shows the initialization handlers for the *hello world* +handlers. The following shows the initialization handlers for the Hello World sample application in the RTEMS kernel's testsuite:: .. code-block:: none diff --git a/user/start/app.rst b/user/start/app.rst index a0c4a04..ac

Re: Hello world and query about a project availability

2020-03-16 Thread Richi Dubey
ease find my patch given below :- > > > > From 296fa828fec7c3f99231b377c57ca20411564703 Mon Sep 17 00:00:00 2001 > > From: Richi Dubey > > Date: Sat, 14 Mar 2020 01:33:02 +0530 > > Subject: [PATCH 2/2] Changed the hello world file > > > > --- > > test

Re: Hello world and query about a project availability

2020-03-16 Thread Richi Dubey
Dear Dr. Bloom, I have added my name on the GSoC Tracking list and have shared a draft proposal with you. Please suggest changes in my proposal: https://docs.google.com/document/d/1bth9sh3qH2vMTks1yiGpZVskUcD-g5jED4a3zJx1Klc/edit?usp=sharing Also, currently the extension ideas I have in my mind a

Re: Hello world and query about a project availability

2020-03-13 Thread Gedare Bloom
On Fri, Mar 13, 2020 at 2:04 PM Richi Dubey wrote: > > Dear Dr. Bloom, > > Please find my patch given below :- > > From 296fa828fec7c3f99231b377c57ca20411564703 Mon Sep 17 00:00:00 2001 > From: Richi Dubey > Date: Sat, 14 Mar 2020 01:33:02 +0530 > Subject: [PATCH 2

Re: Hello world and query about a project availability

2020-03-13 Thread Richi Dubey
Dear Dr. Bloom, Please find my patch given below :- >From 296fa828fec7c3f99231b377c57ca20411564703 Mon Sep 17 00:00:00 2001 From: Richi Dubey Date: Sat, 14 Mar 2020 01:33:02 +0530 Subject: [PATCH 2/2] Changed the hello world file --- testsuites/samples/hello/init.c |

Re: Hello world and query about a project availability

2020-03-12 Thread Gedare Bloom
On Thu, Mar 12, 2020 at 1:23 PM Gedare Bloom wrote: > > Hi Richi, > > Welcome. The "Improve the SMP Scheduler" will require strong C > programming skills before the summer. You will be expected to > demonstrate that during the proposal period. I'm the only likely > mentor for that project this yea

Re: Hello world and query about a project availability

2020-03-12 Thread Gedare Bloom
Hi Richi, Welcome. The "Improve the SMP Scheduler" will require strong C programming skills before the summer. You will be expected to demonstrate that during the proposal period. I'm the only likely mentor for that project this year, and I haven't decided if I will mentor any projects, or which p

Re: RTEMS CAN support Was: Hello World on BeagleBone

2020-03-12 Thread Pavel Pisa
ated CAN support, which was added > >> by a previous RTEMS GSoC student project. > >> > >> Gedare > >> > >> On Sun, Mar 8, 2020 at 11:30 AM John kongtcheu wrote: > >> > -- Forwarded message ----- > >> > From: Jo

Re: [PATCH] Hello World

2020-03-10 Thread Gedare Bloom
ne can start with Qemu-emulated CAN support, which was added >> by a previous RTEMS GSoC student project. >> >> Gedare >> >> On Sun, Mar 8, 2020 at 11:30 AM John kongtcheu >> wrote: >> > >> > >> > >> > -- Forwarded message

Re: [PATCH] Hello World

2020-03-10 Thread John kongtcheu
emu-emulated CAN support, which was added > by a previous RTEMS GSoC student project. > > Gedare > > On Sun, Mar 8, 2020 at 11:30 AM John kongtcheu > wrote: > > > > > > > > -- Forwarded message - > > From: John kongtcheu > &

Re: [PATCH] Hello World

2020-03-09 Thread Gedare Bloom
- > From: John kongtcheu > Date: Sun, Feb 23, 2020 at 7:19 PM > Subject: Fwd: [PATCH] Hello World > To: > Cc: > > > > -- Forwarded message - > From: John kongtcheu > Date: Sun, Feb 23, 2020, 6:53 PM > Subject: Re: [PATCH] Hello World > To: Gedare

Re: Unable to complete the Hello World program

2020-03-01 Thread Jiri Gaisler
On 3/1/20 9:56 AM, Denil Verghese wrote: > Hi, >     I'm Denil C Verghese and I like to be a part contribute to this > organization as well as participate in upcoming GSoC program. I have checked > the Wiki entries related to GSoC. But I'm facing some error in completing the > quick start guide

Unable to complete the Hello World program

2020-03-01 Thread Denil Verghese
Hi, I'm Denil C Verghese and I like to be a part contribute to this organization as well as participate in upcoming GSoC program. I have checked the Wiki entries related to GSoC. But I'm facing some error in completing the quick start guide. Problem: Build failed when executing *sb-set-builde

Re: [PATCH v1] Hello world task done

2020-02-23 Thread Gedare Bloom
100644 > --- a/testsuites/samples/hello/init.c > +++ b/testsuites/samples/hello/init.c > @@ -22,7 +22,7 @@ static rtems_task Init( > { >rtems_print_printer_fprintf_putc(&rtems_test_printer); > TEST_BEGIN(); > - printf( "Hello World\n" ); > + printf( "H

[PATCH v1] Hello world task done

2020-02-23 Thread Anmol Mishra
@@ static rtems_task Init( { rtems_print_printer_fprintf_putc(&rtems_test_printer); TEST_BEGIN(); - printf( "Hello World\n" ); + printf( "Hello World, My name is Anmol Mishra\nYou can call me Anmol\n" ); TEST_END(); rtems_test_

Re: [PATCH] Hello World

2020-02-23 Thread Gedare Bloom
es/samples/hello/init.c > index 34ded37c55..13aa377d95 100644 > --- a/testsuites/samples/hello/init.c > +++ b/testsuites/samples/hello/init.c > @@ -22,7 +22,7 @@ static rtems_task Init( > { >rtems_print_printer_fprintf_putc(&rtems_test_printer); >TEST_BEGIN(); >

[PATCH] Hello World

2020-02-23 Thread John Kongtcheu
@@ static rtems_task Init( { rtems_print_printer_fprintf_putc(&rtems_test_printer); TEST_BEGIN(); - printf( "Hello World\n" ); + printf( "This is John Kongtcheu's Hello World \n Welcome to RTEMS and Google Summer of Code 2020" ); TEST_END(); rtems_

Re: [PATCH] Changed 'hello world' as a proof of concept(GSoC 2020).

2020-02-17 Thread Gedare Bloom
a/testsuites/samples/hello/init.c > b/testsuites/samples/hello/init.c > index 34ded37c55..e2a4f30cd1 100644 > --- a/testsuites/samples/hello/init.c > +++ b/testsuites/samples/hello/init.c > @@ -14,7 +14,7 @@ > #include > #include > > -const char rtems_test_name[

[PATCH] Changed 'hello world' as a proof of concept(GSoC 2020).

2020-02-17 Thread Utkarsh
/init.c @@ -14,7 +14,7 @@ #include #include -const char rtems_test_name[] = "HELLO WORLD"; +const char rtems_test_name[] = "Proof of concept"; static rtems_task Init( rtems_task_argument ignored @@ -22,7 +22,7 @@ static rtems_task Init( { rtems_print_

Re: Hello World Patch

2019-11-18 Thread Christian Mauderer
agat wrote: >>>> Hi! >>>> I decided to start early to understand things here and find what I would >>>> like to work on, if I have to choose a project. I intended to contribute >>>> to some OS org to improve my understanding of OS and get some experien

Re: Hello World Patch

2019-11-18 Thread Christian Mauderer
and get some experience >>> along the way. RTEMS participating in GSOC is only like a cherry >>> topping. Thank you for your help! I will stay connected. Is the IRC only >>> active during GSOC? >>> On Thursday, 14 November, 2019, 12:13:44 am IST, Christian Mauderer >&g

Re: Hello World Patch

2019-11-18 Thread Shubham Bhagat
like a cherry >> topping. Thank you for your help! I will stay connected. Is the IRC only >> active during GSOC? >> On Thursday, 14 November, 2019, 12:13:44 am IST, Christian Mauderer >> wrote: >> >> >> Hello Shubham Bhagat, >> >> welcome t

Re: Hello World Patch

2019-11-17 Thread Christian Mauderer
ote that most tickets are not really well suited for the time frame of >> a GSoC project. But you might find some topics that you are interested >> in and we can then find a GSoC project in that area. >> >> Best regards >> >> Christian >> >> [1] https:

Re: Hello World Patch

2019-11-15 Thread Christian Mauderer
istian Mauderer > wrote: > > > Hello Shubham Bhagat, > > welcome to RTEMS and congratulations for completing the Hello World task. > > You are quite early for GSoC 2020. So just to be sure let me ask: Do you > plan to participate as a GSoC student or do you want to sta

Re: Hello World Patch

2019-11-13 Thread Christian Mauderer
Hello Shubham Bhagat, welcome to RTEMS and congratulations for completing the Hello World task. You are quite early for GSoC 2020. So just to be sure let me ask: Do you plan to participate as a GSoC student or do you want to start just out of interest outside of a program like GSoC? If you want

Re: [PATCH v2] Add lvgl/hello: Sample Hello world app using littleVGL and libbsd

2019-09-19 Thread Chris Johns
On 19/9/19 9:15 pm, Vijay Kumar Banerjee wrote: > I added the changes in the attached patch. Thank you. I have pushed it. Chris ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel

Re: [PATCH v2] Add lvgl/hello: Sample Hello world app using littleVGL and libbsd

2019-09-19 Thread Vijay Kumar Banerjee
d97dcc55c5ad6 Mon Sep 17 00:00:00 2001 From: Vijay Kumar Banerjee Date: Wed, 18 Sep 2019 02:56:46 +0530 Subject: [PATCH v5] Add lvgl/hello: Sample Hello world app using littleVGL and libbsd --- README | 2 +- lvgl/README| 6 ++ lvgl/hello/test.c | 154

  1   2   >