-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pkg/lwext4: add lightweight implementation of the ext2/3/4 filesystem #18682
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
benpicco
requested review from
smlng,
leandrolanzieri,
aabadie,
MichelRottleuthner and
fjmolinas
as code owners
October 3, 2022 20:49
github-actions
bot
added
Area: boards
Area: Board ports
Area: build system
Area: Build system
Area: doc
Area: Documentation
Area: pkg
Area: External package ports
Area: sys
Area: System
Area: tests
Area: tests and testing framework
Platform: native
Platform: This PR/issue effects the native platform
labels
Oct 3, 2022
benpicco
changed the title
pkg/lwext4: add lightweight implementation of ext2/3/4
pkg/lwext4: add lightweight implementation of the ext2/3/4 filesystem
Oct 14, 2022
maribu
reviewed
Feb 25, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a few nitpicks, other lgtm
benpicco
added
the
CI: ready for build
If set, CI server will compile all applications for all available boards for the labeled PR
label
Feb 25, 2023
Murdock results✔️ PASSED 020aac6 boards/same54-xpro: add support for lwEXT4
ArtifactsThis only reflects a subset of all builds from https://ci-prod.riot-os.org. Please refer to https://ci.riot-os.org for a complete build for now. |
maribu
approved these changes
Feb 25, 2023
Thank you! bors merge |
Build succeeded: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Area: boards
Area: Board ports
Area: build system
Area: Build system
Area: doc
Area: Documentation
Area: pkg
Area: External package ports
Area: sys
Area: System
CI: ready for build
If set, CI server will compile all applications for all available boards for the labeled PR
Platform: native
Platform: This PR/issue effects the native platform
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Contribution description
This adds lwEXT4 as a package and provides integration with MTD and VFS.
lwEXT4 is an implementation of the ext2/3/4 journaling file system. The different feature levels can be selected by the pseudo-modules
lwext2_vfs
,lwext3_vfs
andlwext4_vfs
respectively.It is intended for use on SD cards (maybe large NAND flashes once we have support for those) as a more fault tolerant alternative to FAT. (If this is really the case has to be seen 😉)
Testing procedure
In
tests/vfs_default
enable one of thelwext%_vfs
modules either onnative
orsame54-xpro
. (Other boards need the mount point configured)Issues/PRs references