Browse Source

Modify package name for test kernel

luojia65 4 years ago
parent
commit
834ea68ed9
2 changed files with 3 additions and 3 deletions
  1. 1 1
      test-kernel/Cargo.toml
  2. 2 2
      test-kernel/justfile

+ 1 - 1
test-kernel/Cargo.toml

@@ -1,5 +1,5 @@
 [package]
-name = "rustsbi-test-kernel"
+name = "test-kernel"
 version = "0.1.0"
 authors = ["luojia65 <[email protected]>"]
 edition = "2018"

+ 2 - 2
test-kernel/justfile

@@ -1,8 +1,8 @@
 target := "riscv64imac-unknown-none-elf"
 mode := "debug"
 build-path := "../target/" + target + "/" + mode + "/"
-test-kernel-elf := build-path + "rustsbi-test-kernel"
-test-kernel-bin := build-path + "rustsbi-test-kernel.bin"
+test-kernel-elf := build-path + "test-kernel"
+test-kernel-bin := build-path + "test-kernel.bin"
 
 objdump := "riscv64-unknown-elf-objdump"
 objcopy := "rust-objcopy --binary-architecture=riscv64"