libfs/fatfs: Add rtems-README file

The rtems-README file contains the process for
importing the source, and the hash and changelog
of the current version.
This commit is contained in:
Sepehr Ganji
2025-06-29 11:48:49 -06:00
parent 328189f15f
commit 20850e7e73

View File

@@ -0,0 +1,23 @@
# rtems-README
This file contains the import process of the FatFS source code from the original upstream. We follow the RTEMS [Third-Party Source Code](https://docs.rtems.org/docs/main/eng/coding-conventions.html#third-party-source-code) manual here.
The import is made by extracting the archive from the [FatFS](https://elm-chan.org/fsw/ff/archives.html) project, putting the source directory here, and adding the checksum with any changelogs on this README file. Here's how the checksum should be calculated (to exclude any file starting with `rtems-` prefix):
```
$ find . -type f ! -name 'rtems-*' -exec sha256sum {} + | sort | sha256sum
```
Any new file added must have `rtems-` prefix, and any changes made to the imported files should have rtems guards added, e.g. `#ifdef __rtems__`.
______________________________________________________________________
## [R0.15b] - 2025-06-21
### Hash
02e3ec67aa7721810dc9164a58ea6a9a7780e50021d8583119895c367a6f9fe1
### Added
- Initial FatFS source code