14 lines
389 B
Bash
Executable file
14 lines
389 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
source "${0:a:h}/lib/env"
|
|
source "$lib/build"
|
|
export ZEPHYR_SDK_INSTALL_DIR="$base/build/zephyr-sdk-0.17.4"
|
|
|
|
prepare net
|
|
|
|
west build "$mod/birdsong-net" -p \
|
|
-d "$out/net" \
|
|
-b coquette@nightingale/nrf5340/cpunet \
|
|
-DZEPHYR_EXTRA_MODULES="$mod/birdsong-devices" \
|
|
-DEXTRA_CFLAGS="-Wno-deprecated-declarations"
|
|
|
|
ln -sf "$out/net/zephyr/zephyr.hex" "$out/net.hex"
|