Skip to content
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

support another_ext4 feature #40

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,12 @@ $ kbuild patch remove axstarry
$ make A=apps/monolithic_userboot FEATURES=img,sched_rr,e1000_net LOG=off ACCEL=n APP_FEATURES=batch NET=y BLK=y run
```

## Run ZLMediaKit
```sh
$ ./build_img.sh -a x86_64 -fs ext4 -s 80 -file x86_64_ZLM
$ make A=apps/monolithic_userboot FEATURES=another_ext4,img,sched_rr LOG=error NET=y BLK=y ARCH=x86_64 ACCEL=n run
```

## Notes

- Please remove unnecessary dependencies in `Cargo.toml` before your commit.
Expand Down
3 changes: 3 additions & 0 deletions scripts/make/features.mk
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ else ifneq ($(findstring monolithic,$(APP)),)
ifneq ($(filter ext4_rs,$(FEATURES)),)
override FEATURES += ext4_rs
endif
ifneq ($(filter another_ext4,$(FEATURES)),)
override FEATURES += another_ext4
endif
endif

override FEATURES := $(strip $(FEATURES))
Expand Down
Loading