Skip to content

Commit 6258547

Browse files
committed
Release v0.2.0
1 parent c14f758 commit 6258547

File tree

3 files changed

+43
-48
lines changed

3 files changed

+43
-48
lines changed

Cargo.lock

Lines changed: 32 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ members = [
3333
]
3434

3535
[workspace.package]
36-
version = "0.1.0"
36+
version = "0.2.0"
3737
edition = "2024"
3838
authors = ["Yuekai Jia <equation618@gmail.com>"]
3939
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0"

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,14 @@ Examples are given below and in the [app-helloworld](https://github.com/arceos-o
180180

181181
## How to build ArceOS for specific platforms and devices
182182

183-
Set the `MYPLAT` variable when run `make`:
183+
You need to manually link your application with the appropriate platform packages:
184+
185+
```rs
186+
// Add this line to your application (for raspi4 platform)
187+
extern crate axplat_aarch64_raspi;
188+
```
189+
190+
Then set the `MYPLAT` variable when run `make`:
184191

185192
```bash
186193
# Build helloworld for raspi4
@@ -201,8 +208,8 @@ make PLAT_CONFIG=$(pwd)/configs/custom/x86_64-pc-oslab.toml A=examples/httpserve
201208
```toml
202209
# In Cargo.toml
203210
[dependencies]
204-
axalloc = { git = "https://github.com/arceos-org/arceos.git", tag = "v0.1.0" } # modules/axalloc
205-
axhal = { git = "https://github.com/arceos-org/arceos.git", tag = "v0.1.0" } # modules/axhal
211+
axalloc = { git = "https://github.com/arceos-org/arceos.git", tag = "v0.2.0" } # modules/axalloc
212+
axhal = { git = "https://github.com/arceos-org/arceos.git", tag = "v0.2.0" } # modules/axhal
206213
```
207214

208215
## Design

0 commit comments

Comments
 (0)