Your ROOT_URL in app.ini is https://bdgit.educoder.net/ but you are visiting http://bdgit.educoder.net/rcore_test/rCore-Tutorial-v3-tests/src/commit/e588d40d70fe0d2577333943da694329048b27fc/os/build.rs You should set ROOT_URL correctly, otherwise the web may not work correctly.
rCore-Tutorial-v3-tests/os/build.rs

7 lines
205 B

static TARGET_PATH: &str = "../user/target/riscv64gc-unknown-none-elf/release/";
fn main() {
println!("cargo:rerun-if-changed=../user/src/");
println!("cargo:rerun-if-changed={}", TARGET_PATH);
}