Re: GSoC: Hello World Patch

2022-03-29 Thread Joel Sherrill
On Tue, Mar 29, 2022 at 2:59 PM Kamlesh Bharodiya 
wrote:

> Hi Joel,
>
> I had tried to run the program using integrated simulator with gdb. That
> didn't work for me (need to figure out).
>

Hmm.. sis as integrated with gdb was disabled in favor of the more powerful
standalone newer versions of sis. This happened before COVID if I
remember correctly.

Where did you find the instructions? We had a lot of instructions built up
around using sis for the erc32 as built into gdb. You may have stumbled
across a place we have missed updating.


> However, I could run it with remote target SIS connected with GDB as well
> as with Emulator. I am attaching the screenshots.
>

That is what is intended. Looks great. Make sure you are in the table in
the wiki I cited.

And start looking at projects and asking questions.

--joel

>
> Regards,
> Kamlesh
>
>
> On Tue, Mar 29, 2022 at 12:21 AM Joel Sherrill  wrote:
>
>> Looks good. Email (or send it to me on Discord) a screenshot in gdb with
>> that program.
>>
>> Then add yourself  to https://devel.rtems.org/wiki/GSoC/2022
>>
>> Feel free to discuss any 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
>>> 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 Entry] Modified Hello World Test
>>>
>>> diff --git a/testsuites/samples/hello/init.c
>>> b/testsuites/samples/hello/init.c
>>> index 34ded37c55..f4288833f9 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( "Hello to the World of RTEMS\n" );
>>>TEST_END();
>>>rtems_test_exit( 0 );
>>>  }
>>>
>>> Regards,
>>> Kamlesh
>>> ___
>>> devel mailing list
>>> devel@rtems.org
>>> http://lists.rtems.org/mailman/listinfo/devel
>>>
>>
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel


Re: GSoC: Hello World Patch

2022-03-28 Thread Joel Sherrill
Looks good. Email (or send it to me on Discord) a screenshot in gdb with
that program.

Then add yourself  to https://devel.rtems.org/wiki/GSoC/2022

Feel free to discuss any projects you are interested in here or Discord.

On Mon, Mar 28, 2022 at 1:10 PM Kamlesh Bharodiya 
wrote:

> 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 Entry] Modified Hello World Test
>
> diff --git a/testsuites/samples/hello/init.c
> b/testsuites/samples/hello/init.c
> index 34ded37c55..f4288833f9 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( "Hello to the World of RTEMS\n" );
>TEST_END();
>rtems_test_exit( 0 );
>  }
>
> Regards,
> Kamlesh
> ___
> devel mailing list
> devel@rtems.org
> http://lists.rtems.org/mailman/listinfo/devel
>
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel


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 Entry] Modified Hello World Test

diff --git a/testsuites/samples/hello/init.c
b/testsuites/samples/hello/init.c
index 34ded37c55..f4288833f9 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( "Hello to the World of RTEMS\n" );
   TEST_END();
   rtems_test_exit( 0 );
 }

Regards,
Kamlesh
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel


[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 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/init.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.30.2

___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel


Re: Hello World Patch

2019-11-18 Thread Christian Mauderer
Hello Shubham Bhagat,

no problem. And don't hesitate to ask on the mailing list if something
sounds interesting.

Best regards

Christian

On 18/11/2019 20:34, Shubham Bhagat wrote:
> Thank you Christian. I am also looking at previous GSOC projects. I am
> hopeful to find some leads there too! Thank you for your time :D
> 
> On Tuesday, 19 November, 2019, 12:08:40 am IST, Christian Mauderer
>  wrote:
> 
> 
> Hello Shubham Bhagat,
> 
> it really depends a lot on what interests you. Independent what you pick
> ask on the mailing list and maybe ask people that have worked on the
> tickets what the status is.
> 
> There are some really small tickets like that stuff:
> 
> https://devel.rtems.org/ticket/3300
> https://devel.rtems.org/ticket/2876
> 
> You will find a lot of similar tickets created by David Binderman. From
> the look of it they have been created either out of a really thorough
> code review or out of the results of some static code analysis tool.
> Most of them look valid and would need someone who finds out what went
> wrong and how the code should be. Most likely that's not really
> interesting work and it would need someone who tries it on real hardware.
> 
> 
> There is a ticket that wants to add a driver to the PowerPC qemu:
> 
> https://devel.rtems.org/ticket/3353
> 
> It seems that no one really noticed it and the patch is most likely
> rotting. Would be nice if someone could test it and bring it to the
> attention of the mailing list.
> 
> 
> If you want to work on a simulator, I think no one has tried the Beagle
> Qemu Simulator for quite some time. If you want you can try it and add
> some information on how to use it to the user manual:
> https://docs.rtems.org/branches/master/user/bsps/bsps-arm.html#beagle
> 
> There's also a ticket for adding any simulator during GSoC Projects:
> https://devel.rtems.org/ticket/2903
> 
> 
> The tickets for Raspberry and Beagle are most likely not up to date but
> there could be some drivers there too that wait to be written:
> 
> https://devel.rtems.org/ticket/2899
> https://devel.rtems.org/ticket/2891
> 
> Best regards
> 
> Christian
> 
> On 18/11/2019 17:28, Shubham Bhagat wrote:
>>
>> Sorry I missed your replies in my inbox!
>>
>> I actually do not have required hardware. I have little experience with
>> GPOS (no experience with embedded!). I was wondering if you could point
>> to some tickets/projects that come to your mind that would be
>> well-suited for me? Or if you tell me where I could look for them, it'd
>> be great help.
>>
>> And thanks for the update on IRC. I'll connect there soon. Thanks!
>> On Monday, 18 November, 2019, 2:21:16 am IST, Christian Mauderer
>> mailto:l...@c-mauderer.de>> wrote:
>>
>>
>> Hello Shubham Bhagat,
>>
>> sorry, I missed the IRC question: In my experience our community doesn't
>> have lot of active people in IRC. You can try to mention some of the
>> connected and available people so they get pinged. For me that works if
>> I'm in front of a PC that is connected to my IRC-Bouncer and if I see
>> the message from my chat program (most of the time when it's evening in
>> Germany).
>>
>> Best regards
>>
>> Christian
>>
>> On 16/11/2019 08:54, Christian Mauderer wrote:
>>> Hello Shubham Bhagat,
>>>
>>> sounds like a good plan. Like I said: If you want to look around a bit
>>> without picking a fixed project yet it might would be a good idea to
>>> have a look at some of the tickets. Topics in the BSP or driver area are
>>> most of the time good starting points if you have the hardware or a
>>> simulator.
>>>
>>> PS: Please keep the devel list on CC.
>>>
>>> Best regards
>>>
>>> Christian
>>>
>>> On 16/11/2019 07:29, Shubham Bhagat 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 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
 mailto:l...@c-mauderer.de>
> >> 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 start just out
 of interest outside of a program like GSoC?

 If you want to start for GSoC: Most of us are not in GSoC mode and the
 infrastructure isn't prepared yet. That's not really a problem but you
 might don't find the information that well prepared at the moment.

 Regarding tasks to do: You can either have a look at the Open Projects
 page in the wiki [1] or suggest some topics yourself. If you find

Re: Hello World Patch

2019-11-18 Thread Christian Mauderer
Hello Shubham Bhagat,

it really depends a lot on what interests you. Independent what you pick
ask on the mailing list and maybe ask people that have worked on the
tickets what the status is.

There are some really small tickets like that stuff:

https://devel.rtems.org/ticket/3300
https://devel.rtems.org/ticket/2876

You will find a lot of similar tickets created by David Binderman. From
the look of it they have been created either out of a really thorough
code review or out of the results of some static code analysis tool.
Most of them look valid and would need someone who finds out what went
wrong and how the code should be. Most likely that's not really
interesting work and it would need someone who tries it on real hardware.


There is a ticket that wants to add a driver to the PowerPC qemu:

https://devel.rtems.org/ticket/3353

It seems that no one really noticed it and the patch is most likely
rotting. Would be nice if someone could test it and bring it to the
attention of the mailing list.


If you want to work on a simulator, I think no one has tried the Beagle
Qemu Simulator for quite some time. If you want you can try it and add
some information on how to use it to the user manual:
https://docs.rtems.org/branches/master/user/bsps/bsps-arm.html#beagle

There's also a ticket for adding any simulator during GSoC Projects:
https://devel.rtems.org/ticket/2903


The tickets for Raspberry and Beagle are most likely not up to date but
there could be some drivers there too that wait to be written:

https://devel.rtems.org/ticket/2899
https://devel.rtems.org/ticket/2891

Best regards

Christian

On 18/11/2019 17:28, Shubham Bhagat wrote:
> 
> Sorry I missed your replies in my inbox!
> 
> I actually do not have required hardware. I have little experience with
> GPOS (no experience with embedded!). I was wondering if you could point
> to some tickets/projects that come to your mind that would be
> well-suited for me? Or if you tell me where I could look for them, it'd
> be great help.
> 
> And thanks for the update on IRC. I'll connect there soon. Thanks!
> On Monday, 18 November, 2019, 2:21:16 am IST, Christian Mauderer
>  wrote:
> 
> 
> Hello Shubham Bhagat,
> 
> sorry, I missed the IRC question: In my experience our community doesn't
> have lot of active people in IRC. You can try to mention some of the
> connected and available people so they get pinged. For me that works if
> I'm in front of a PC that is connected to my IRC-Bouncer and if I see
> the message from my chat program (most of the time when it's evening in
> Germany).
> 
> Best regards
> 
> Christian
> 
> On 16/11/2019 08:54, Christian Mauderer wrote:
>> Hello Shubham Bhagat,
>>
>> sounds like a good plan. Like I said: If you want to look around a bit
>> without picking a fixed project yet it might would be a good idea to
>> have a look at some of the tickets. Topics in the BSP or driver area are
>> most of the time good starting points if you have the hardware or a
>> simulator.
>>
>> PS: Please keep the devel list on CC.
>>
>> Best regards
>>
>> Christian
>>
>> On 16/11/2019 07:29, Shubham Bhagat 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 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
>>> mailto:l...@c-mauderer.de>> 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 start just out
>>> of interest outside of a program like GSoC?
>>>
>>> If you want to start for GSoC: Most of us are not in GSoC mode and the
>>> infrastructure isn't prepared yet. That's not really a problem but you
>>> might don't find the information that well prepared at the moment.
>>>
>>> Regarding tasks to do: You can either have a look at the Open Projects
>>> page in the wiki [1] or suggest some topics yourself. If you find
>>> something just discuss it on the mailing list. Someone will show up and
>>> help with how to approach the topic. Again: Please note that some of the
>>> open projects might still have some left over from last year. But even
>>> if you pick something that is solved yet we can then find something
> similar.
>>>
>>> Another possible starting point at this time could be to have a look at
>>> some of the tickets at [2]. A lot of stuff piled up there and we are
>>> always happy if someone starts to work on the less active tickets. Just
>>> tell the mailing list that you want to work on a ticket to avoid
>>> duplicate work.
>>>
>>> Note that most ticke

Re: Hello World Patch

2019-11-18 Thread Shubham Bhagat
 
Sorry I missed your replies in my inbox!
I actually do not have required hardware. I have little experience with GPOS 
(no experience with embedded!). I was wondering if you could point to some 
tickets/projects that come to your mind that would be well-suited for me? Or if 
you tell me where I could look for them, it'd be great help.
And thanks for the update on IRC. I'll connect there soon. Thanks!
On Monday, 18 November, 2019, 2:21:16 am IST, Christian Mauderer 
 wrote:  
 
 Hello Shubham Bhagat,

sorry, I missed the IRC question: In my experience our community doesn't
have lot of active people in IRC. You can try to mention some of the
connected and available people so they get pinged. For me that works if
I'm in front of a PC that is connected to my IRC-Bouncer and if I see
the message from my chat program (most of the time when it's evening in
Germany).

Best regards

Christian

On 16/11/2019 08:54, Christian Mauderer wrote:
> Hello Shubham Bhagat,
> 
> sounds like a good plan. Like I said: If you want to look around a bit
> without picking a fixed project yet it might would be a good idea to
> have a look at some of the tickets. Topics in the BSP or driver area are
> most of the time good starting points if you have the hardware or a
> simulator.
> 
> PS: Please keep the devel list on CC.
> 
> Best regards
> 
> Christian
> 
> On 16/11/2019 07:29, Shubham Bhagat 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 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
>>  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 start just out
>> of interest outside of a program like GSoC?
>>
>> If you want to start for GSoC: Most of us are not in GSoC mode and the
>> infrastructure isn't prepared yet. That's not really a problem but you
>> might don't find the information that well prepared at the moment.
>>
>> Regarding tasks to do: You can either have a look at the Open Projects
>> page in the wiki [1] or suggest some topics yourself. If you find
>> something just discuss it on the mailing list. Someone will show up and
>> help with how to approach the topic. Again: Please note that some of the
>> open projects might still have some left over from last year. But even
>> if you pick something that is solved yet we can then find something similar.
>>
>> Another possible starting point at this time could be to have a look at
>> some of the tickets at [2]. A lot of stuff piled up there and we are
>> always happy if someone starts to work on the less active tickets. Just
>> tell the mailing list that you want to work on a ticket to avoid
>> duplicate work.
>>
>> Note 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://devel.rtems.org/wiki/Developer/OpenProjects
>> [2] https://devel.rtems.org/query
>>
>> On 13/11/2019 10:45, Shubham Bhagat wrote:
>>> Hi!
>>> I've completed the Hello World task for GSOC and have included the patch
>>> and screenshot in the attachments. Please do check. I am a sophomore
>>> Computer Science student from India looking to gain more knowledge in
>>> Operating Systems. Please do share with me interesting projects/issues
>>> that I can tackle!
>>>
>>> Thank you Ravindra Kumar Meena for writing a very detailed blog so I
>>> could successfully build :)
>>
>>>
>>> ___
>>> devel mailing list
>>> devel@rtems.org 
>>> http://lists.rtems.org/mailman/listinfo/devel
>>
>>>
> ___
> devel mailing list
> devel@rtems.org
> http://lists.rtems.org/mailman/listinfo/devel
> 
  ___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel

Re: Hello World Patch

2019-11-17 Thread Christian Mauderer
Hello Shubham Bhagat,

sorry, I missed the IRC question: In my experience our community doesn't
have lot of active people in IRC. You can try to mention some of the
connected and available people so they get pinged. For me that works if
I'm in front of a PC that is connected to my IRC-Bouncer and if I see
the message from my chat program (most of the time when it's evening in
Germany).

Best regards

Christian

On 16/11/2019 08:54, Christian Mauderer wrote:
> Hello Shubham Bhagat,
> 
> sounds like a good plan. Like I said: If you want to look around a bit
> without picking a fixed project yet it might would be a good idea to
> have a look at some of the tickets. Topics in the BSP or driver area are
> most of the time good starting points if you have the hardware or a
> simulator.
> 
> PS: Please keep the devel list on CC.
> 
> Best regards
> 
> Christian
> 
> On 16/11/2019 07:29, Shubham Bhagat 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 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
>>  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 start just out
>> of interest outside of a program like GSoC?
>>
>> If you want to start for GSoC: Most of us are not in GSoC mode and the
>> infrastructure isn't prepared yet. That's not really a problem but you
>> might don't find the information that well prepared at the moment.
>>
>> Regarding tasks to do: You can either have a look at the Open Projects
>> page in the wiki [1] or suggest some topics yourself. If you find
>> something just discuss it on the mailing list. Someone will show up and
>> help with how to approach the topic. Again: Please note that some of the
>> open projects might still have some left over from last year. But even
>> if you pick something that is solved yet we can then find something similar.
>>
>> Another possible starting point at this time could be to have a look at
>> some of the tickets at [2]. A lot of stuff piled up there and we are
>> always happy if someone starts to work on the less active tickets. Just
>> tell the mailing list that you want to work on a ticket to avoid
>> duplicate work.
>>
>> Note 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://devel.rtems.org/wiki/Developer/OpenProjects
>> [2] https://devel.rtems.org/query
>>
>> On 13/11/2019 10:45, Shubham Bhagat wrote:
>>> Hi!
>>> I've completed the Hello World task for GSOC and have included the patch
>>> and screenshot in the attachments. Please do check. I am a sophomore
>>> Computer Science student from India looking to gain more knowledge in
>>> Operating Systems. Please do share with me interesting projects/issues
>>> that I can tackle!
>>>
>>> Thank you Ravindra Kumar Meena for writing a very detailed blog so I
>>> could successfully build :)
>>
>>>
>>> ___
>>> devel mailing list
>>> devel@rtems.org 
>>> http://lists.rtems.org/mailman/listinfo/devel
>>
>>>
> ___
> devel mailing list
> devel@rtems.org
> http://lists.rtems.org/mailman/listinfo/devel
> 
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel


Re: Hello World Patch

2019-11-15 Thread Christian Mauderer
Hello Shubham Bhagat,

sounds like a good plan. Like I said: If you want to look around a bit
without picking a fixed project yet it might would be a good idea to
have a look at some of the tickets. Topics in the BSP or driver area are
most of the time good starting points if you have the hardware or a
simulator.

PS: Please keep the devel list on CC.

Best regards

Christian

On 16/11/2019 07:29, Shubham Bhagat 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 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
>  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 start just out
> of interest outside of a program like GSoC?
> 
> If you want to start for GSoC: Most of us are not in GSoC mode and the
> infrastructure isn't prepared yet. That's not really a problem but you
> might don't find the information that well prepared at the moment.
> 
> Regarding tasks to do: You can either have a look at the Open Projects
> page in the wiki [1] or suggest some topics yourself. If you find
> something just discuss it on the mailing list. Someone will show up and
> help with how to approach the topic. Again: Please note that some of the
> open projects might still have some left over from last year. But even
> if you pick something that is solved yet we can then find something similar.
> 
> Another possible starting point at this time could be to have a look at
> some of the tickets at [2]. A lot of stuff piled up there and we are
> always happy if someone starts to work on the less active tickets. Just
> tell the mailing list that you want to work on a ticket to avoid
> duplicate work.
> 
> Note 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://devel.rtems.org/wiki/Developer/OpenProjects
> [2] https://devel.rtems.org/query
> 
> On 13/11/2019 10:45, Shubham Bhagat wrote:
>> Hi!
>> I've completed the Hello World task for GSOC and have included the patch
>> and screenshot in the attachments. Please do check. I am a sophomore
>> Computer Science student from India looking to gain more knowledge in
>> Operating Systems. Please do share with me interesting projects/issues
>> that I can tackle!
>>
>> Thank you Ravindra Kumar Meena for writing a very detailed blog so I
>> could successfully build :)
> 
>>
>> ___
>> devel mailing list
>> devel@rtems.org 
>> http://lists.rtems.org/mailman/listinfo/devel
> 
>>
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel


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 to start for GSoC: Most of us are not in GSoC mode and the
infrastructure isn't prepared yet. That's not really a problem but you
might don't find the information that well prepared at the moment.

Regarding tasks to do: You can either have a look at the Open Projects
page in the wiki [1] or suggest some topics yourself. If you find
something just discuss it on the mailing list. Someone will show up and
help with how to approach the topic. Again: Please note that some of the
open projects might still have some left over from last year. But even
if you pick something that is solved yet we can then find something similar.

Another possible starting point at this time could be to have a look at
some of the tickets at [2]. A lot of stuff piled up there and we are
always happy if someone starts to work on the less active tickets. Just
tell the mailing list that you want to work on a ticket to avoid
duplicate work.

Note 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://devel.rtems.org/wiki/Developer/OpenProjects
[2] https://devel.rtems.org/query

On 13/11/2019 10:45, Shubham Bhagat wrote:
> Hi!
> I've completed the Hello World task for GSOC and have included the patch
> and screenshot in the attachments. Please do check. I am a sophomore
> Computer Science student from India looking to gain more knowledge in
> Operating Systems. Please do share with me interesting projects/issues
> that I can tackle!
> 
> Thank you Ravindra Kumar Meena for writing a very detailed blog so I
> could successfully build :)
> 
> ___
> devel mailing list
> devel@rtems.org
> http://lists.rtems.org/mailman/listinfo/devel
> 
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel


GSoC 2019 hello world patch

2019-03-03 Thread Humaid Bin Haroon
Hello developers,

I am an embedded systems enthusiast and am looking forward to contributing to 
the RTEMS project and getting accepted into it for GSoC 2019.

Please find attached the files as per the 'Getting Started' tutorial for your 
reference.

Thank you,
Syed Humaid

From 47a1afa1a283d54641f67e34446b58fe9092f607 Mon Sep 17 00:00:00 2001
From: Ubuntu
 
Date: Sun, 3 Mar 2019 12:59:17 +
Subject: [PATCH] GSOC RTEMS Getting Started Hello World Test

---
 init.c | 49 +
 1 file changed, 49 insertions(+)
 create mode 100644 init.c

diff --git a/init.c b/init.c
new file mode 100644
index 000..8f0466e
--- /dev/null
+++ b/init.c
@@ -0,0 +1,49 @@
+/*
+ *  COPYRIGHT (c) 1989-2012.
+ *  On-Line Applications Research Corporation (OAR).
+ *
+ *  The license and distribution terms for this file may be
+ *  found in the file LICENSE in this distribution or at
+ *  http://www.rtems.org/license/LICENSE.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include 
+
+#include  /* for device driver prototypes */
+
+#include 
+#include 
+
+/* forward declarations to avoid warnings */
+rtems_task Init(rtems_task_argument argument);
+
+const char rtems_test_name[] = "HELLO WORLD";
+
+rtems_task Init(
+  rtems_task_argument ignored
+)
+{
+  rtems_test_begin();
+  printf( "He110 GSOC 2019 World --- RTEMS \n" );
+  rtems_test_end();
+  exit( 0 );
+}
+
+
+/* NOTICE: the clock driver is explicitly disabled */
+#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+
+#define CONFIGURE_MAXIMUM_TASKS1
+#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
+
+#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
+#define CONFIGURE_INIT
+#include 
-- 
2.17.1


___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel

Re: Hello World patch

2018-01-17 Thread Christian Mauderer
Hello Vidushi,

I think the whole wiki is only editable for registered users. That's
true for the students table too.

Regards

Christian Mauderer

Am 17.01.2018 um 07:06 schrieb Vidushi Vashishth:
> Hello!
> 
> I sent the patch to Gedare Bloom. The student tracking table is not
> editable yet I think. Thanks for the list of projects. I will shortly
> get back to you on which project I would contribute to.
> 
> Best,
> Vidushi
> 
> On Tue, Jan 16, 2018 at 3:05 AM, Joel Sherrill  <mailto:j...@rtems.org>> wrote:
> 
> 
> 
> On Mon, Jan 15, 2018 at 2:20 PM, Christian Mauderer
>  <mailto:christian.maude...@embedded-brains.de>> wrote:
> 
> - Ursprüngliche Mail -
> > Von: "Vidushi Vashishth"  <mailto:reachv...@gmail.com>>
> > An: "RTEMS Devel" mailto:devel@rtems.org>>
> > Gesendet: Montag, 15. Januar 2018 06:17:53
> > Betreff: Hello World patch
> 
> > Hi!
> >
> > I have the hello world patch and screenshot. Whom should I send it 
> to?
> >
> > Best,
> > Vidushi
> >
> > ___
> > devel mailing list
> > devel@rtems.org <mailto:devel@rtems.org>
> > http://lists.rtems.org/mailman/listinfo/devel
> <http://lists.rtems.org/mailman/listinfo/devel>
> 
> Hello Vidushi,
> 
> I assume that you think of the patch and screenshot from the
> GSoC Getting Started guide
> (https://devel.rtems.org/wiki/GSoC/GettingStarted
> <https://devel.rtems.org/wiki/GSoC/GettingStarted>)? In that
> case: Quite a number of last years student's have sent that to
> the mailing list. But I think you can also send it to Gedare
> Bloom directly. If you send it to the list, please make sure
> that your screenshot isn't too big. There is a size limit on the
> mailing list (I think around 100 or 200k) and it will be
> delivered to a lot of people.
> 
> 
> Sending it to Gedare or myself is fine.
> 
> Also there is a student tracking page
> at https://devel.rtems.org/wiki/GSoC/2018
> <https://devel.rtems.org/wiki/GSoC/2018> with a table you should add
> yourself to. You can leave the project TBD for now. But we can
> discuss project ideas
>  
> 
> 
> It's really great that you are interested in working with us but
> please note that you are quite early. Not everything is set up
> yet for GSoC2018. For example a lot of wiki pages are still only
> updated partially. Beneath that Google didn't even publish it's
> list of accepted organizations but we had no problems in the
> last years so I would be quite optimistic.
> 
> Of course you can already start to bond with the community. If
> you already have project ideas you should discuss them with
> potential mentors or - if you have no idea who might could be a
> mentor - discuss them on the mailing list. If you don't have
> ideas, you can take a look over
> https://devel.rtems.org/wiki/Developer/OpenProjects
> <https://devel.rtems.org/wiki/Developer/OpenProjects>.
> 
> 
> Christian is correct. It is quite early. We have applied and I have
> made a suggestion on what I personally think are the highest
> priority projects from an RTEMS project perspective. But that
> doesn't mean all have mentors or that someone in the community or a
> student doesn't have other ideas.
> 
> My personal starting list for high priority projects was:
> 
> + Wifi integration improvements (assuming Christian mentors)
> + aarch64 port
> + non-legacy PC support
> + coverage reporting changes and gcov support improvements
> + Eclipse target support for tracing and gdb (TCF?)
> 
> I am sure there are other projects of merit. Those were just the
> ones off the top of my head.
> 
> The Open Project page is a good place to start looking but some
> projects have had progress on them and others are possibly no longer
> relevant.
> 
> --joel
>  
> 
> 
> Best regards
> 
> Christian Mauderer
> 
> 

-- 

embedded brains GmbH
Herr Christian Mauderer
Dornierstr. 4
D-82178 Puchheim
Germany
email: christian.maude...@embedded-brains.de
Phone: +49-89-18 94 741 - 18
Fax:   +49-89-18 94 741 - 08
PGP: Public key available on request.

Diese Nachricht ist keine geschäftliche Mitteilung im Sinne des EHUG.
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel

Re: Hello World patch

2018-01-16 Thread Vidushi Vashishth
Hello!

I sent the patch to Gedare Bloom. The student tracking table is not
editable yet I think. Thanks for the list of projects. I will shortly get
back to you on which project I would contribute to.

Best,
Vidushi

On Tue, Jan 16, 2018 at 3:05 AM, Joel Sherrill  wrote:

>
>
> On Mon, Jan 15, 2018 at 2:20 PM, Christian Mauderer <
> christian.maude...@embedded-brains.de> wrote:
>
>> - Ursprüngliche Mail -
>> > Von: "Vidushi Vashishth" 
>> > An: "RTEMS Devel" 
>> > Gesendet: Montag, 15. Januar 2018 06:17:53
>> > Betreff: Hello World patch
>>
>> > Hi!
>> >
>> > I have the hello world patch and screenshot. Whom should I send it to?
>> >
>> > Best,
>> > Vidushi
>> >
>> > ___
>> > devel mailing list
>> > devel@rtems.org
>> > http://lists.rtems.org/mailman/listinfo/devel
>>
>> Hello Vidushi,
>>
>> I assume that you think of the patch and screenshot from the GSoC Getting
>> Started guide (https://devel.rtems.org/wiki/GSoC/GettingStarted)? In
>> that case: Quite a number of last years student's have sent that to the
>> mailing list. But I think you can also send it to Gedare Bloom directly. If
>> you send it to the list, please make sure that your screenshot isn't too
>> big. There is a size limit on the mailing list (I think around 100 or 200k)
>> and it will be delivered to a lot of people.
>>
>
> Sending it to Gedare or myself is fine.
>
> Also there is a student tracking page at https://devel.rtems.org/wik
> i/GSoC/2018 with a table you should add yourself to. You can leave the
> project TBD for now. But we can discuss project ideas
>
>
>>
>> It's really great that you are interested in working with us but please
>> note that you are quite early. Not everything is set up yet for GSoC2018.
>> For example a lot of wiki pages are still only updated partially. Beneath
>> that Google didn't even publish it's list of accepted organizations but we
>> had no problems in the last years so I would be quite optimistic.
>>
>> Of course you can already start to bond with the community. If you
>> already have project ideas you should discuss them with potential mentors
>> or - if you have no idea who might could be a mentor - discuss them on the
>> mailing list. If you don't have ideas, you can take a look over
>> https://devel.rtems.org/wiki/Developer/OpenProjects.
>>
>
> Christian is correct. It is quite early. We have applied and I have made a
> suggestion on what I personally think are the highest priority projects
> from an RTEMS project perspective. But that doesn't mean all have mentors
> or that someone in the community or a student doesn't have other ideas.
>
> My personal starting list for high priority projects was:
>
> + Wifi integration improvements (assuming Christian mentors)
> + aarch64 port
> + non-legacy PC support
> + coverage reporting changes and gcov support improvements
> + Eclipse target support for tracing and gdb (TCF?)
>
> I am sure there are other projects of merit. Those were just the ones off
> the top of my head.
>
> The Open Project page is a good place to start looking but some projects
> have had progress on them and others are possibly no longer relevant.
>
> --joel
>
>
>>
>> Best regards
>>
>> Christian Mauderer
>> --
>> 
>> embedded brains GmbH
>> Christian Mauderer
>> Dornierstr. 4
>> <https://maps.google.com/?q=Dornierstr.+4+%0D+D-82178+Puchheim+%0D+Germany&entry=gmail&source=g>
>> D-82178 Puchheim
>> Germany
>> email: christian.maude...@embedded-brains.de
>> Phone: +49-89-18 94 741 - 18
>> Fax:   +49-89-18 94 741 - 08
>> PGP: Public key available on request.
>>
>> Diese Nachricht ist keine geschäftliche Mitteilung im Sinne des EHUG.
>> ___
>> devel mailing list
>> devel@rtems.org
>> http://lists.rtems.org/mailman/listinfo/devel
>
>
>
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel

Re: Hello World patch

2018-01-15 Thread Joel Sherrill
On Mon, Jan 15, 2018 at 2:20 PM, Christian Mauderer <
christian.maude...@embedded-brains.de> wrote:

> - Ursprüngliche Mail -
> > Von: "Vidushi Vashishth" 
> > An: "RTEMS Devel" 
> > Gesendet: Montag, 15. Januar 2018 06:17:53
> > Betreff: Hello World patch
>
> > Hi!
> >
> > I have the hello world patch and screenshot. Whom should I send it to?
> >
> > Best,
> > Vidushi
> >
> > ___
> > devel mailing list
> > devel@rtems.org
> > http://lists.rtems.org/mailman/listinfo/devel
>
> Hello Vidushi,
>
> I assume that you think of the patch and screenshot from the GSoC Getting
> Started guide (https://devel.rtems.org/wiki/GSoC/GettingStarted)? In that
> case: Quite a number of last years student's have sent that to the mailing
> list. But I think you can also send it to Gedare Bloom directly. If you
> send it to the list, please make sure that your screenshot isn't too big.
> There is a size limit on the mailing list (I think around 100 or 200k) and
> it will be delivered to a lot of people.
>

Sending it to Gedare or myself is fine.

Also there is a student tracking page at
https://devel.rtems.org/wiki/GSoC/2018 with a table you should add yourself
to. You can leave the project TBD for now. But we can discuss project ideas


>
> It's really great that you are interested in working with us but please
> note that you are quite early. Not everything is set up yet for GSoC2018.
> For example a lot of wiki pages are still only updated partially. Beneath
> that Google didn't even publish it's list of accepted organizations but we
> had no problems in the last years so I would be quite optimistic.
>
> Of course you can already start to bond with the community. If you already
> have project ideas you should discuss them with potential mentors or - if
> you have no idea who might could be a mentor - discuss them on the mailing
> list. If you don't have ideas, you can take a look over
> https://devel.rtems.org/wiki/Developer/OpenProjects.
>

Christian is correct. It is quite early. We have applied and I have made a
suggestion on what I personally think are the highest priority projects
from an RTEMS project perspective. But that doesn't mean all have mentors
or that someone in the community or a student doesn't have other ideas.

My personal starting list for high priority projects was:

+ Wifi integration improvements (assuming Christian mentors)
+ aarch64 port
+ non-legacy PC support
+ coverage reporting changes and gcov support improvements
+ Eclipse target support for tracing and gdb (TCF?)

I am sure there are other projects of merit. Those were just the ones off
the top of my head.

The Open Project page is a good place to start looking but some projects
have had progress on them and others are possibly no longer relevant.

--joel


>
> Best regards
>
> Christian Mauderer
> --
> 
> embedded brains GmbH
> Christian Mauderer
> Dornierstr. 4
> D-82178 Puchheim
> Germany
> email: christian.maude...@embedded-brains.de
> Phone: +49-89-18 94 741 - 18
> Fax:   +49-89-18 94 741 - 08
> PGP: Public key available on request.
>
> Diese Nachricht ist keine geschäftliche Mitteilung im Sinne des EHUG.
> ___
> devel mailing list
> devel@rtems.org
> http://lists.rtems.org/mailman/listinfo/devel
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel

Re: Hello World patch

2018-01-15 Thread Christian Mauderer
- Ursprüngliche Mail -
> Von: "Vidushi Vashishth" 
> An: "RTEMS Devel" 
> Gesendet: Montag, 15. Januar 2018 06:17:53
> Betreff: Hello World patch

> Hi!
> 
> I have the hello world patch and screenshot. Whom should I send it to?
> 
> Best,
> Vidushi
> 
> ___
> devel mailing list
> devel@rtems.org
> http://lists.rtems.org/mailman/listinfo/devel

Hello Vidushi,

I assume that you think of the patch and screenshot from the GSoC Getting 
Started guide (https://devel.rtems.org/wiki/GSoC/GettingStarted)? In that case: 
Quite a number of last years student's have sent that to the mailing list. But 
I think you can also send it to Gedare Bloom directly. If you send it to the 
list, please make sure that your screenshot isn't too big. There is a size 
limit on the mailing list (I think around 100 or 200k) and it will be delivered 
to a lot of people.

It's really great that you are interested in working with us but please note 
that you are quite early. Not everything is set up yet for GSoC2018. For 
example a lot of wiki pages are still only updated partially. Beneath that 
Google didn't even publish it's list of accepted organizations but we had no 
problems in the last years so I would be quite optimistic.

Of course you can already start to bond with the community. If you already have 
project ideas you should discuss them with potential mentors or - if you have 
no idea who might could be a mentor - discuss them on the mailing list. If you 
don't have ideas, you can take a look over 
https://devel.rtems.org/wiki/Developer/OpenProjects.

Best regards

Christian Mauderer
-- 

embedded brains GmbH
Christian Mauderer
Dornierstr. 4
D-82178 Puchheim
Germany
email: christian.maude...@embedded-brains.de
Phone: +49-89-18 94 741 - 18
Fax:   +49-89-18 94 741 - 08
PGP: Public key available on request.

Diese Nachricht ist keine geschäftliche Mitteilung im Sinne des EHUG.
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel

Hello World patch

2018-01-14 Thread Vidushi Vashishth
Hi!

I have the hello world patch and screenshot. Whom should I send it to?

Best,
Vidushi
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel