Skip to content

Commit

Permalink
fix: fix the bug for ext4fs feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Azure-stars committed Jun 3, 2024
1 parent a22bef3 commit 34770d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ $ make A=apps/monolithic_userboot APP_FEATURES=batch ARCH=x86_64 run
```

## Build and run testcases with ext4fs
The document of the ext4fs is [here](./doc/ext4fs.md).
```sh
# Run in the lwext4fs with Rust interface, whose url is https://github.com/elliott10/lwext4_rust.
make A=apps/monolithic_userboot FEATURES=lwext4_rust LOG=off ACCEL=n run
Expand Down
4 changes: 2 additions & 2 deletions scripts/make/features.mk
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ else ifneq ($(findstring monolithic,$(APP)),)
ifneq ($(filter fs net pipe select epoll,$(FEATURES)),)
override FEATURES += fd
endif
ifeq ($(filter lwext4_rust,$(FEATURES)),)
ifneq ($(filter lwext4_rust,$(FEATURES)),)
override FEATURES += lwext4_rust
endif
ifeq ($(filter ext4_rs,$(FEATURES)),)
ifneq ($(filter ext4_rs,$(FEATURES)),)
override FEATURES += ext4_rs
endif
endif
Expand Down

0 comments on commit 34770d2

Please sign in to comment.