[PATCH 1/2] bsps/stm32h7: move BSP start hooks into boards subdirectories

2022-06-03 Thread Karel Gardas
The idea here is to prepare for better per-board specialization of the hooks function code. Sponsored-By: Precidata --- .../stm/nucleo-h743zi/stm32h7-bspstarthooks.c | 78 +++ .../stm32h743i-eval/stm32h7-bspstarthooks.c | 78 +++ .../stm32h747i-disco/stm32h7-bs

[PATCH 2/2] bsps/stm32h7: remove external memory initialization from nucleo-h743zi BSP

2022-06-03 Thread Karel Gardas
Nucleo board does not provide any external memory so code does not have any function here anyway. Sponsored-By: Precidata --- .../boards/stm/nucleo-h743zi/ext-mem-ctl.c| 478 -- .../stm/nucleo-h743zi/stm32h7-bspstarthooks.c | 1 - .../bsps/arm/stm32h7/bspnucleoh743zi.yml

[PATCH rtems-docs 0/1] TFTPFS: Add block and window size options

2022-06-03 Thread Frank Kuehndel
From: Frank Kühndel Hello all, I extended the TFTP file system to support the block size and the window size options (RFCs 2347, 2348, 7440). Essentially, this significantly improves the download and upload speeds provided the TFTP server on the other side also supports at least one of these op

[PATCH rtems-docs 1/1] TFTPFS: New documentation

2022-06-03 Thread Frank Kuehndel
From: Frank Kühndel --- filesystem/index.rst | 1 + filesystem/trivial_ftp.rst | 638 - 2 files changed, 636 insertions(+), 3 deletions(-) diff --git a/filesystem/index.rst b/filesystem/index.rst index f4e2ed6..64a2f1d 100644 --- a/filesystem/index.rs

[PATCH 1/7] TFTPFS: Cleanup: Remove spaces at lines ends

2022-06-03 Thread Frank Kuehndel
From: Frank Kühndel --- cpukit/libfs/src/ftpfs/tftpDriver.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/cpukit/libfs/src/ftpfs/tftpDriver.c b/cpukit/libfs/src/ftpfs/tftpDriver.c index bebe748ca5..d0eadcf99a 100644 --- a/cpukit/libfs/src/ftpfs/tftpD

[PATCH 2/7] TFTPFS: Duplicate tftpDriver.c to tftpfs.c

2022-06-03 Thread Frank Kuehndel
From: Frank Kühndel --- cpukit/libfs/src/ftpfs/{tftpDriver.c => tftpfs.c} | 0 spec/build/cpukit/libtftpfs.yml | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename cpukit/libfs/src/ftpfs/{tftpDriver.c => tftpfs.c} (100%) diff --git a/cpukit/libfs/src/ftpfs/tftpDr

[PATCH 3/7] TFTPFS: Restore tftpDriver.c

2022-06-03 Thread Frank Kuehndel
From: Frank Kühndel --- cpukit/libfs/src/ftpfs/tftpDriver.c | 1088 +++ 1 file changed, 1088 insertions(+) create mode 100644 cpukit/libfs/src/ftpfs/tftpDriver.c diff --git a/cpukit/libfs/src/ftpfs/tftpDriver.c b/cpukit/libfs/src/ftpfs/tftpDriver.c new file mode 100644

[PATCH 0/7] TFTPFS: Add block and window size options

2022-06-03 Thread Frank Kuehndel
From: Frank Kühndel The following patches extend the TFTP file system to support * RFC 2347 TFTP Option Extension * RFC 2348 TFTP Blocksize Option * RFC 7440 TFTP Windowsize Option To benefit from improved download and upload speeds, a TFTP server which supports at least the blocksize opt

[PATCH 7/7] TFTPFS: Add more tests

2022-06-03 Thread Frank Kuehndel
From: Frank Kühndel --- testsuites/fstests/tftpfs/init.c | 3397 ++ 1 file changed, 3397 insertions(+) diff --git a/testsuites/fstests/tftpfs/init.c b/testsuites/fstests/tftpfs/init.c index a7ef03cf74..0c6df5fa5c 100644 --- a/testsuites/fstests/tftpfs/init.c +++ b/te

[PATCH 5/7] TFTPFS: Add test suite framework

2022-06-03 Thread Frank Kuehndel
From: Frank Kühndel --- spec/build/testsuites/fstests/grp.yml |2 + spec/build/testsuites/fstests/tftpfs.yml | 25 + testsuites/fstests/tftpfs/init.c | 1054 + .../fstests/tftpfs/tftpfs_interactions.c | 984 +++ .../fstests/tftpfs

[PATCH 6/7] TFTPFS: Add tests

2022-06-03 Thread Frank Kuehndel
From: Frank Kühndel --- testsuites/fstests/tftpfs/init.c | 3197 -- 1 file changed, 3032 insertions(+), 165 deletions(-) diff --git a/testsuites/fstests/tftpfs/init.c b/testsuites/fstests/tftpfs/init.c index 91308ec75b..a7ef03cf74 100644 --- a/testsuites/fstests/tftp

Re: [PATCH 3/7] TFTPFS: Restore tftpDriver.c

2022-06-03 Thread Joel Sherrill
Is this really just a move/rename? Does it preserve the git blame info? --joel On Fri, Jun 3, 2022, 10:22 AM Frank Kuehndel < frank.kuehn...@embedded-brains.de> wrote: > From: Frank Kühndel > > --- > cpukit/libfs/src/ftpfs/tftpDriver.c | 1088 +++ > 1 file changed, 1088