xref: /tests/bsim/bluetooth/compile.nrf5340bsim_nrf5340_cpuapp.sh
  • Home
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • current directory
1#!/usr/bin/env bash
2# Copyright 2018 Oticon A/S
3# SPDX-License-Identifier: Apache-2.0
4
5# Compile all bluetooth applications needed for the split stack tests
6
7#set -x #uncomment this line for debugging
8set -ue
9: "${ZEPHYR_BASE:?ZEPHYR_BASE must be set to point to the zephyr root directory}"
10
11export BOARD="${BOARD:-nrf5340bsim/nrf5340/cpuapp}"
12
13source ${ZEPHYR_BASE}/tests/bsim/compile.source
14
15${ZEPHYR_BASE}/tests/bsim/bluetooth/host/compile.sh
16${ZEPHYR_BASE}/tests/bsim/bluetooth/tester/compile.sh
17
18app=tests/bsim/bluetooth/ll/conn conf_file=prj_split_privacy.conf sysbuild=1  compile
19app=tests/bsim/bluetooth/ll/throughput sysbuild=1 compile
20app=tests/bsim/bluetooth/ll/multiple_id sysbuild=1 compile
21app=tests/bsim/bluetooth/ll/bis conf_overlay=overlay-sequential.conf sysbuild=1 compile
22app=tests/bsim/bluetooth/ll/bis conf_overlay=overlay-interleaved.conf sysbuild=1 compile
23app=tests/bsim/bluetooth/ll/bis conf_overlay=overlay-ticker_expire_info.conf sysbuild=1 compile
24app=tests/bsim/bluetooth/ll/cis conf_overlay=overlay-acl_group.conf sysbuild=1 compile
25
26run_in_background ${ZEPHYR_BASE}/tests/bsim/bluetooth/samples/compile.sh
27run_in_background ${ZEPHYR_BASE}/tests/bsim/bluetooth/audio/compile.sh
28run_in_background ${ZEPHYR_BASE}/tests/bsim/bluetooth/audio_samples/compile.sh
29
30wait_for_background_jobs
31

Last Index update Fri Aug 22 02:51:05 CST 2025