justfile 526 B

123456789101112131415161718
  1. target := "riscv64gc-unknown-none-elf"
  2. mode := "debug"
  3. build-path := "../../target/" + target + "/" + mode + "/"
  4. m-firmware-file := build-path + "rustsbi-k210"
  5. m-bin-file := build-path + "rustsbi-k210.bin"
  6. k210-serialport := "/dev/ttyS17"
  7. objcopy := "rust-objcopy --binary-architecture=riscv64"
  8. build: firmware
  9. @{{objcopy}} {{m-firmware-file}} --strip-all -O binary {{m-bin-file}}
  10. firmware:
  11. @cargo build --target={{target}}
  12. run: build
  13. @python3 ./kflash.py --port {{k210-serialport}} --terminal {{m-bin-file}}