rtems-tools arparse inclusion discussion

2020-04-12 Thread Anmol Mishra
Hello, I am trying to develop a CLI tool for rtems-tools and include argparse for the same. I have a few questions. 1. Is there any similar work done in rtems before for reference? 2. How to test because I will be working on one file at a time (Is this right approach?) 3. How to understand the

ticket #3892 Doubt

2020-03-29 Thread Anmol Mishra
Hello, While reading carefully, I can't completely understand regarding "high-level management utility" Can you please elaborate on what is being asked or referenced? Regards Anmol Mishra ___ devel mailing list devel@rtems.org http://lists

Re: GSoC Students: Submit Draft Applications

2020-03-26 Thread Anmol Mishra
Hello, I have updated the draft from my dashboard, Please check it, It should be visible to you now. Regards Anmol Mishra On Thu, Mar 26, 2020 at 4:50 AM Gedare Bloom wrote: > Hi Students, > > I see several of you have submitted "Draft, shared" in GSoC App. That > is goo

[Suggestion required : Testing project benifits for rtems]

2020-03-26 Thread Anmol Mishra
nce and help. Regards Anmol Mishra ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel

Python Standardization

2020-03-22 Thread Anmol Mishra
Hello, Since you clarified the motivation for API, I need to ask a few questions which will help me. 1. By API, Do you mean a wrapper or a common access point to test/access all the utilities? If yes, Is REST API is expected like a dashboard? 2. Is there any active API? I know this question may

RTEMS Python Standardization

2020-03-21 Thread Anmol Mishra
Hello, I know you might be consumed in some work, But can you please clarify a few things or some other developer from the community. Please explain a bit about "The entire API will need to be tested using pytest" and your feedback on

Re: GSoC Students: Submit Draft Applications

2020-03-21 Thread Anmol Mishra
Thanks for the heads up, Surely complete it asap. On Sat, Mar 21, 2020 at 11:51 AM Denil Verghese wrote: > Will do! > > On Sat, 21 Mar, 2020, 4:03 AM Gedare Bloom, wrote: > >> PS: And gather your proof documentation to submit :) >> >> On Fri, Mar 20, 2020 at 4:24 PM Gedare Bloom wrote: >> >

Re: [PATCH v1 01/16] Py2/3 compliant tools/gdb/python

2020-03-19 Thread Anmol Mishra
2020 at 1:41 PM Anmol Mishra > wrote: > > > > Hello, > > I can understand your requests, I also thought to squash/combine all > changes in 1 patch. I will complete the task in a day and resend the patch. > I did not know the protocol/contributing guide. I will keep a n

Re: Python Development Guidelines Next Steps?

2020-03-19 Thread Anmol Mishra
Hello, On Thu, Mar 19, 2020 at 9:56 PM Sebastian Huber < sebastian.hu...@embedded-brains.de> wrote: > Hello, > > I checked in the first version of the guide: > > https://docs.rtems.org/branches/master/eng/python-devel.html > We should refine it now step by step. In particular, it would be

Re: [PATCH v1 01/16] Py2/3 compliant tools/gdb/python

2020-03-19 Thread Anmol Mishra
les. Either way is really OK, patches > that touch just one file are less likely to conflict, but a patch that > does one thing across many files is easier to review/approve. I'll > leave it up to you how you want to proceed. > > > > On Wed, Mar 18, 2020 at 6:19 AM Anmol mishra >

[PATCH v1 06/16] Py2/3 compliant tools/gdb/python/percpu.py

2020-03-18 Thread Anmol mishra
From: Anmol Mishra --- tools/gdb/python/percpu.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/gdb/python/percpu.py b/tools/gdb/python/percpu.py index 991bdf8..fb2d6d8 100644 --- a/tools/gdb/python/percpu.py +++ b/tools/gdb/python/percpu.py @@ -31,9 +31,11

[PATCH v1 04/16] Py2/3 compliant tools/gdb/python/rtems.py

2020-03-18 Thread Anmol mishra
From: Anmol Mishra --- tools/gdb/python/rtems.py | 15 +-- 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/tools/gdb/python/rtems.py b/tools/gdb/python/rtems.py index a097797..43232a6 100644 --- a/tools/gdb/python/rtems.py +++ b/tools/gdb/python/rtems.py @@ -31,15

[PATCH v1 02/16] Py2/3 compliant tools/gdb/python/pretty.py

2020-03-18 Thread Anmol mishra
From: Anmol Mishra --- tools/gdb/python/pretty.py | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tools/gdb/python/pretty.py b/tools/gdb/python/pretty.py index 3cbe052..302dc2f 100644 --- a/tools/gdb/python/pretty.py +++ b/tools/gdb/python/pretty.py @@ -30,12

[PATCH v1 09/16] Py2/3 compliant tools/gdb/python/supercore.py

2020-03-18 Thread Anmol mishra
From: Anmol Mishra --- tools/gdb/python/supercore.py | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/gdb/python/supercore.py b/tools/gdb/python/supercore.py index 318ebb7..dd1420e 100644 --- a/tools/gdb/python/supercore.py +++ b/tools/gdb/python/supercore.py

[PATCH v1 11/16] Py2/3 compliant tools/gdb/python/classic.py

2020-03-18 Thread Anmol mishra
From: Anmol Mishra --- tools/gdb/python/classic.py | 20 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/tools/gdb/python/classic.py b/tools/gdb/python/classic.py index b5aacf8..494eaea 100644 --- a/tools/gdb/python/classic.py +++ b/tools/gdb/python

[PATCH v1 03/16] Py2/3 compliant tools/gdb/python/mutex.py

2020-03-18 Thread Anmol mishra
From: Anmol Mishra --- tools/gdb/python/mutex.py | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tools/gdb/python/mutex.py b/tools/gdb/python/mutex.py index 17f1900..eaae1ac 100644 --- a/tools/gdb/python/mutex.py +++ b/tools/gdb/python/mutex.py @@ -31,11 +31,13

[PATCH v1 05/16] Py2/3 compliant tools/gdb/python/main.py

2020-03-18 Thread Anmol mishra
From: Anmol Mishra --- tools/gdb/python/main.py | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/gdb/python/main.py b/tools/gdb/python/main.py index 6fb7c54..945fb69 100644 --- a/tools/gdb/python/main.py +++ b/tools/gdb/python/main.py @@ -3,9 +3,11 @@ # # main

[PATCH v1 01/16] Py2/3 compliant tools/gdb/python

2020-03-18 Thread Anmol mishra
From: Anmol Mishra --- tools/gdb/python/__init__.py | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/gdb/python/__init__.py b/tools/gdb/python/__init__.py index 0ea5fb2..dfbe6ba 100644 --- a/tools/gdb/python/__init__.py +++ b/tools/gdb/python/__init__.py @@ -27,8

[PATCH v1 07/16] Py2/3 compliant tools/gdb/python/sparc.py

2020-03-18 Thread Anmol mishra
From: Anmol Mishra --- tools/gdb/python/sparc.py | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/gdb/python/sparc.py b/tools/gdb/python/sparc.py index 38f19b7..4879266 100644 --- a/tools/gdb/python/sparc.py +++ b/tools/gdb/python/sparc.py @@ -2,7 +2,10 @@ # RTEMS

[PATCH v1 12/16] Py2/3 compliant tools/gdb/python/heaps.py

2020-03-18 Thread Anmol mishra
From: Anmol Mishra --- tools/gdb/python/heaps.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/gdb/python/heaps.py b/tools/gdb/python/heaps.py index 14238e3..274942e 100644 --- a/tools/gdb/python/heaps.py +++ b/tools/gdb/python/heaps.py @@ -31,6 +31,8 @@ # RTEMS heap # +from

[PATCH v1 15/16] Py2/3 compliant tools/gdb/python/classic_printer.py

2020-03-18 Thread Anmol mishra
From: Anmol Mishra --- tools/gdb/python/classic_printer.py | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/gdb/python/classic_printer.py b/tools/gdb/python/classic_printer.py index 86e0eeb..121edc8 100644 --- a/tools/gdb/python/classic_printer.py +++ b/tools/gdb

[PATCH v1 08/16] Py2/3 compliant tools/gdb/python/threads.py

2020-03-18 Thread Anmol mishra
From: Anmol Mishra --- tools/gdb/python/threads.py | 12 +++- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/tools/gdb/python/threads.py b/tools/gdb/python/threads.py index 690f77f..d050acc 100644 --- a/tools/gdb/python/threads.py +++ b/tools/gdb/python/threads.py

[PATCH v1 14/16] Py2/3 compliant tools/gdb/python/helper.py

2020-03-18 Thread Anmol mishra
From: Anmol Mishra --- tools/gdb/python/helper.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/gdb/python/helper.py b/tools/gdb/python/helper.py index e9fe2f8..ac7c944 100644 --- a/tools/gdb/python/helper.py +++ b/tools/gdb/python/helper.py @@ -30,6 +30,8 @@ # RTEMS GDB support

[PATCH v1 16/16] Py2/3 compliant tools/gdb/python/supercore_printer.py

2020-03-18 Thread Anmol mishra
From: Anmol Mishra --- tools/gdb/python/supercore_printer.py | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/gdb/python/supercore_printer.py b/tools/gdb/python/supercore_printer.py index 61241e3..d144b40 100644 --- a/tools/gdb/python/supercore_printer.py +++ b

[PATCH v1 13/16] Py2/3 compliant tools/gdb/python/rbtrees.py

2020-03-18 Thread Anmol mishra
From: Anmol Mishra --- tools/gdb/python/rbtrees.py | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/gdb/python/rbtrees.py b/tools/gdb/python/rbtrees.py index 2e4c9e7..ace598c 100644 --- a/tools/gdb/python/rbtrees.py +++ b/tools/gdb/python/rbtrees.py @@ -31,6 +31,8

[PATCH v1 10/16] Py2/3 compliant tools/gdb/python/watchdog.py

2020-03-18 Thread Anmol mishra
From: Anmol Mishra --- tools/gdb/python/watchdog.py | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/gdb/python/watchdog.py b/tools/gdb/python/watchdog.py index 6a80421..b758e11 100644 --- a/tools/gdb/python/watchdog.py +++ b/tools/gdb/python/watchdog.py

RTEMS python standardisation

2020-03-18 Thread Anmol Mishra
Hello, I know you must be consumed into other work and repositories, but I have been waiting for your response on the proposal and patch. I just need a starting point and Is there any guide for python repositories testing, I can see a lot of discussion in the past 2 days. I really look forward to

Re: [PATCH] Improve Python 3 compatibility misc directory

2020-03-17 Thread Anmol Mishra
Refer https://docs.python.org/3.1/whatsnew/3.0.html On Wed, 18 Mar, 2020, 02:22 Anmol mishra, wrote: > From: Anmol Mishra > > --- > misc/tools/boot.py | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/misc/tools/boot.py b/misc/tools/boot.py >

[PATCH] Improve Python 3 compatibility misc directory

2020-03-17 Thread Anmol mishra
From: Anmol Mishra --- misc/tools/boot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/tools/boot.py b/misc/tools/boot.py index 265d1b3..78e43bc 100644 --- a/misc/tools/boot.py +++ b/misc/tools/boot.py @@ -147,7 +147,7 @@ class bootloader(object

Re: RTEMS Python Standardization (ticket #3892)

2020-03-15 Thread Anmol Mishra
of starting like which repositories to focus first. Your mentorship and help are highly appreciated. Regards Anmol On Thu, Mar 12, 2020 at 8:23 PM Amar Takhar wrote: > On 2020-03-12 11:52 +0530, Anmol Mishra wrote: > > Hello, > > With whom can I discuss regarding douts, Any tentat

Re: RTEMS Python Standardization (ticket #3892)

2020-03-12 Thread Anmol Mishra
Hello, With whom can I discuss regarding douts, Any tentative mentor open for guiding me, I have a few doubts regarding the project. Is Dr. Gedare going to be a tentative mentor? Best Regards On Tue, Mar 10, 2020 at 11:12 AM Anmol Mishra wrote: > Sure thing, I have replied and reviewed

Re: RTEMS Python Standardization (ticket #3892)

2020-03-09 Thread Anmol Mishra
> review advice in: https://google.github.io/gsocguides/student/ > > On Mon, Mar 9, 2020 at 12:02 PM Anmol Mishra > wrote: > > > > Hello, > > I proposed the project and after a lot of input, I saw that a project > RTEMS Python Standardization (ticket #3892) has been

RTEMS Python Standardization (ticket #3892)

2020-03-09 Thread Anmol Mishra
/d/1_G0-q7J2b-5kJzZGI32a-KpC6gMzJ1FcNFFTdMCw1c4/edit?usp=sharing Please consider me a little naive as this is my first proposal, I will try to match the benchmark in the final proposal, A lot of discussions is to be done at this stage. Best Regards Anmol Mishra

Re: Suggestion

2020-03-09 Thread Anmol Mishra
I am drafting a proposal for this, Will submit it as soon as possible, Possibly by tomorrow. I am getting an idea and I will try to match the ticket deliverables. Best Regards Anmol On Sat, Feb 29, 2020 at 12:39 AM Amar Takhar wrote: > On 2020-02-28 12:39 -0600, Joel Sherrill wrote: > > > >

Suggestion

2020-02-28 Thread Anmol Mishra
I can see python2 code being used. And as of 2020 python2 has been depreciated but I assume everyone is aware of that. Is there any active plan to shift the codebase. I am open to discussion for this. Regards Anmol ___ devel mailing list devel@rtems.org

[Project #3860]

2020-02-28 Thread Anmol Mishra
Hello, I was going through the list of potential projects for GSoC 2020, I love working with automation tools and "Code Formatting and Style Check for RTEMS score" looks exciting to me. I saw you edited the wiki and the owner was not mentioned so pinging you for the same. I have read the

Re: Project query #2920

2020-02-27 Thread Anmol Mishra
Thank you for the reply, I am going through the tickets and will be fixing the bugs for the same. I will be submitting the draft proposal as soon as possible. Meanwhile, I will study previous student's work to get a heads-up. Regards Anmol Mishra On Wed, Feb 26, 2020 at 5:34 PM Joel Sherrill

Project query #2920

2020-02-26 Thread Anmol Mishra
Hello, My name is Anmol, I am a Google Summer of Code, Student developer aspirant for 2020. I have completed the Hello-world task. I am interested in Ticket #2920 i.e "Improve Coverage Analysis Toolset". I know that Dr. Joel is the owner and Dr. Gedare has reported it as per the information

Project query : [Improve Coverage Analysis Toolset]

2020-02-24 Thread Anmol Mishra
Hello, My name is Anmol, I am a Google Summer of Code, Student developer aspirant for 2020. I have completed the Hello-world task. I am interested in Ticket #2920 i.e "Improve Coverage Analysis Toolset". I know that Dr. Joel is the owner and Dr. Gedare has reported it. Is there any mentor

[PATCH v1] Hello world task done

2020-02-23 Thread Anmol Mishra
@@ static rtems_task Init( { rtems_print_printer_fprintf_putc(_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_exit

Re: RTEMS-BSP testing

2020-02-23 Thread Anmol Mishra
Hey, I also witnessed this, My host was Ubuntu as well, I was trying out Hello world task using sis. Considering myself naive and new to this, I am trying to look into this as well. Thank You On Sun, Feb 23, 2020 at 9:23 PM John kongtcheu wrote: > Hello again, > DIfferent problem though it's