Set up dev environment
This commit is contained in:
parent
d3135baf70
commit
ec499f9692
5 changed files with 207 additions and 0 deletions
28
Justfile
Normal file
28
Justfile
Normal file
|
@ -0,0 +1,28 @@
|
|||
default:
|
||||
@just --list --unsorted
|
||||
|
||||
# build firmware
|
||||
build:
|
||||
echo "Building firmware..."
|
||||
|
||||
# clear build cache
|
||||
clean:
|
||||
rm -rf build
|
||||
|
||||
# list all build targets
|
||||
list:
|
||||
echo "TBD"
|
||||
|
||||
# initialize west
|
||||
init:
|
||||
west init -l config
|
||||
west update
|
||||
west zephyr-export
|
||||
|
||||
# upgrade west
|
||||
upgrade:
|
||||
west update
|
||||
|
||||
# upgrade zephyr
|
||||
upgrade-zephyr:
|
||||
nix flake update --flake .
|
Loading…
Add table
Add a link
Reference in a new issue