[PATCH v4 3/3] testsuites/libtests: Add test for flashdev

2023-04-30 Thread aaron . nyholm
From: Aaron Nyholm --- spec/build/testsuites/libtests/flashdev01.yml | 20 ++ spec/build/testsuites/libtests/grp.yml| 2 + testsuites/libtests/flashdev01/flashdev01.doc | 11 + testsuites/libtests/flashdev01/flashdev01.scn | 2 + testsuites/libtests/flashdev01/init.c | 190

cpukit/flash: Add API for Flash device

2023-04-30 Thread aaron . nyholm
Hi All, Thanks again for the feedback. I've improved the implementation of the bit allocator in line with your suggestions and refactored some other functions to reduce repeated code. Regards, Aaron. ___ devel mailing list devel@rtems.org

[PATCH v4 1/3] cpukit/flash: Add API for Flash devices

2023-04-30 Thread aaron . nyholm
From: Aaron Nyholm --- cpukit/dev/flash/flashdev.c | 902 cpukit/include/dev/flash/flashdev.h | 459 ++ spec/build/cpukit/librtemscpu.yml | 4 + 3 files changed, 1365 insertions(+) create mode 100644 cpukit/dev/flash/flashdev.c create mode

Re: RSB repo commits need approval

2023-04-30 Thread Chris Johns
On 29/4/2023 3:48 am, o...@c-mauderer.de wrote: > Hello Joel, > > Am 28.04.23 um 00:19 schrieb Joel Sherrill: >> >> >> On Wed, Apr 26, 2023 at 7:06 PM Chris Johns > > wrote: >> >>     Hi, >> >>     All RSB repo commits need to be posted for review and independent >>    

[PATCH v4 2/3] libmisc/shell: Add flashdev command

2023-04-30 Thread aaron . nyholm
From: Aaron Nyholm --- cpukit/include/rtems/shellconfig.h | 7 + cpukit/libmisc/shell/main_flashdev.c | 592 +++ spec/build/cpukit/objshell.yml | 1 + 3 files changed, 600 insertions(+) create mode 100644 cpukit/libmisc/shell/main_flashdev.c diff --git