mirror of
https://github.com/LegitCamper/picocalc-os-rs.git
synced 2025-12-27 07:45:28 +00:00
rename syscall table from abi
This commit is contained in:
6
justfile
6
justfile
@@ -1,10 +1,12 @@
|
||||
target := "thumbv8m.main-none-eabihf"
|
||||
|
||||
kernel-dev board:
|
||||
cargo run --bin kernel --features {{board}} --features fps
|
||||
kernel-release-probe board:
|
||||
cargo run --bin kernel --profile release --features {{board}} --features fps
|
||||
kernel-release board:
|
||||
cargo build --bin kernel --release --no-default-features --features {{board}}
|
||||
elf2uf2-rs -d target/thumbv8m.main-none-eabihf/release/kernel
|
||||
elf2uf2-rs -d target/{{target}}/release/kernel
|
||||
|
||||
binary-args := "RUSTFLAGS=\"-C link-arg=-pie -C relocation-model=pic\""
|
||||
|
||||
@@ -42,7 +44,7 @@ userapps: cbindgen
|
||||
just userapp wav_player
|
||||
|
||||
copy-userapp app:
|
||||
cp ./target/thumbv8m.main-none-eabihf/release-binary/{{app}} /run/media/$(whoami)/PICOCALC/{{app}}.bin
|
||||
cp ./target/{{target}}/release-binary/{{app}} /run/media/$(whoami)/PICOCALC/{{app}}.bin
|
||||
|
||||
copy-userapps:
|
||||
#!/bin/bash
|
||||
|
||||
Reference in New Issue
Block a user