-
Notifications
You must be signed in to change notification settings - Fork 214
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
硬件测试问题汇总 #376
Comments
尝试修复了 错误原因是 目前测试指令
// let board = std::env::var("PLATFORM").unwrap();
// let kernel_base_addr: u64 = if board.contains("fu740") {
// 0xffffffe080200000
// } else {
// 0xffffffc080200000
// };
let board = std::env::var("PLATFORM");
let kernel_base_addr: u64 = if board.map_or(false, |x| x.contains("fu740")) {
0xffffffe080200000
} else {
0xffffffc080200000
}; |
D1 rustsbi启动,星光开发板启动都没问题了。:+1: |
commit id : ea7324f
D1
通过opensbi启动
❌ opensbi + 内存烧写,只进到opensbi无法进到zCore
通过rusbsbi启动
❌ rustsbi , 运行
cargo bin --arch riscv64 --features "linux board-d1 link-user-img" --output z.bin
编译出错星光
❌ 运行
cargo bin --arch riscv64 --features "linux board-visionfive link-user-img" --output z.bin
编译出错Unmatched
✔️ 远程启动正常,libc-test通过
The text was updated successfully, but these errors were encountered: