Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

manifest: sdk-zephyr: Ble host and mesh fixes #20421

Merged

Conversation

m-alperen-sener
Copy link
Contributor

No description provided.

@m-alperen-sener m-alperen-sener requested review from a team as code owners February 17, 2025 14:45
@github-actions github-actions bot added manifest changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. ble mesh Label for ble mesh PRbot. Add this if PR is related to ble mesh and you need to get review. labels Feb 17, 2025
@NordicBuilder
Copy link
Contributor

NordicBuilder commented Feb 17, 2025

The following west manifest projects have changed revision in this Pull Request:

Name Old Revision New Revision Diff
zephyr nrfconnect/sdk-zephyr@a2b3371 nrfconnect/sdk-zephyr@107f9f0 (main) nrfconnect/[email protected]

All manifest checks OK

Note: This message is automatically posted and updated by the Manifest GitHub Action.

@NordicBuilder
Copy link
Contributor

NordicBuilder commented Feb 17, 2025

CI Information

To view the history of this post, clich the 'edited' button above
Build number: 11

Inputs:

Sources:

sdk-nrf: PR head: f04109151cd7c6d74cff29ea37aaa04b4df08154
zephyr: PR head: 107f9f0cf5369c707282724f7484d708a99ed274

more details

sdk-nrf:

PR head: f04109151cd7c6d74cff29ea37aaa04b4df08154
merge base: a39caf036ab37b59ba8c665db9c044a112275041
target head (main): a39caf036ab37b59ba8c665db9c044a112275041
Diff

zephyr:

PR head: 107f9f0cf5369c707282724f7484d708a99ed274
merge base: a2b33714ee8e918eddb102012e2c45f90f9c742d
Diff

Github labels

Enabled Name Description
ci-disabled Disable the ci execution
ci-all-test Run all of ci, no test spec filtering will be done
ci-force-downstream Force execution of downstream even if twister fails
ci-run-twister Force run twister
ci-run-zephyr-twister Force run zephyr twister
List of changed files detected by CI (394)
subsys
│  ├── bluetooth
│  │  ├── mesh
│  │  │  │ Kconfig
west.yml
zephyr
│  ├── doc
│  │  ├── connectivity
│  │  │  ├── bluetooth
│  │  │  │  ├── api
│  │  │  │  │  ├── mesh
│  │  │  │  │  │  │ dfu.rst
│  │  ├── releases
│  │  │  │ migration-guide-4.1.rst
│  ├── include
│  │  ├── zephyr
│  │  │  ├── bluetooth
│  │  │  │  ├── bluetooth.h
│  │  │  │  ├── mesh
│  │  │  │  │  │ access.h
│  ├── modules
│  │  ├── mbedtls
│  │  │  ├── configs
│  │  │  │  │ config-tls-generic.h
│  ├── samples
│  │  ├── bluetooth
│  │  │  ├── mesh
│  │  │  │  ├── boards
│  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp_ns.conf
│  │  │  │  │  │ qemu_x86.conf
│  │  │  │  │ prj.conf
│  │  │  ├── mesh_demo
│  │  │  │  ├── boards
│  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp_ns.conf
│  │  │  │  │  │ qemu_x86.conf
│  │  │  │  │ prj.conf
│  │  │  ├── mesh_provisioner
│  │  │  │  ├── boards
│  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp_ns.conf
│  │  │  │  │  │ qemu_x86.conf
│  │  │  │  │ prj.conf
│  │  ├── boards
│  │  │  ├── nordic
│  │  │  │  ├── mesh
│  │  │  │  │  ├── onoff-app
│  │  │  │  │  │  │ prj.conf
│  │  │  │  │  ├── onoff_level_lighting_vnd_app
│  │  │  │  │  │  │ prj.conf
│  │  │  ├── phytec
│  │  │  │  ├── reel_board
│  │  │  │  │  ├── mesh_badge
│  │  │  │  │  │  │ prj.conf
│  ├── subsys
│  │  ├── bluetooth
│  │  │  ├── common
│  │  │  │  │ bt_settings_commit.h
│  │  │  ├── host
│  │  │  │  ├── Kconfig
│  │  │  │  ├── conn.c
│  │  │  │  ├── crypto.h
│  │  │  │  ├── crypto_psa.c
│  │  │  │  ├── ecc.c
│  │  │  │  ├── gatt.c
│  │  │  │  ├── hci_core.c
│  │  │  │  ├── settings.c
│  │  │  │  │ settings.h
│  │  │  ├── mesh
│  │  │  │  ├── Kconfig
│  │  │  │  ├── adv.h
│  │  │  │  ├── adv_ext.c
│  │  │  │  ├── blob_cli.c
│  │  │  │  ├── blob_io_flash.c
│  │  │  │  ├── cdb.c
│  │  │  │  ├── delayable_msg.c
│  │  │  │  ├── dfd_srv.c
│  │  │  │  ├── net.c
│  │  │  │  ├── pb_adv.c
│  │  │  │  ├── pb_gatt_cli.c
│  │  │  │  ├── provisioner.c
│  │  │  │  ├── proxy_msg.c
│  │  │  │  ├── proxy_srv.c
│  │  │  │  │ settings.c
│  ├── tests
│  │  ├── bluetooth
│  │  │  ├── common
│  │  │  │  ├── testlib
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── include
│  │  │  │  │  │  ├── testlib
│  │  │  │  │  │  │  ├── addr.h
│  │  │  │  │  │  │  │ att.h
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ att.c
│  │  │  ├── host
│  │  │  │  ├── conn
│  │  │  │  │  ├── mocks
│  │  │  │  │  │  ├── kernel.c
│  │  │  │  │  │  │ kernel.h
│  │  │  ├── mesh_shell
│  │  │  │  │ prj.conf
│  │  │  ├── tester
│  │  │  │  ├── Kconfig
│  │  │  │  ├── overlay-mesh.conf
│  │  │  │  ├── src
│  │  │  │  │  │ btp.c
│  │  │  │  │ testcase.yaml
│  │  ├── bsim
│  │  │  ├── babblekit
│  │  │  │  ├── include
│  │  │  │  │  ├── babblekit
│  │  │  │  │  │  ├── flags.h
│  │  │  │  │  │  │ testcase.h
│  │  │  ├── bluetooth
│  │  │  │  ├── host
│  │  │  │  │  ├── adv
│  │  │  │  │  │  ├── chain
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  ├── encrypted
│  │  │  │  │  │  │  ├── css_sample_data
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  ├── central.c
│  │  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  │  │ peripheral.c
│  │  │  │  │  │  │  │  ├── test_scripts
│  │  │  │  │  │  │  │  │  │ run_tests.sh
│  │  │  │  │  │  ├── extended
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  ├── ext_adv_advertiser.c
│  │  │  │  │  │  │  │  │ ext_adv_scanner.c
│  │  │  │  │  │  ├── long_ad
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── advertiser.c
│  │  │  │  │  │  │  │  │ scanner.c
│  │  │  │  │  │  ├── periodic
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  ├── per_adv_advertiser.c
│  │  │  │  │  │  │  │  │ per_adv_sync.c
│  │  │  │  │  │  │  ├── tests_scripts
│  │  │  │  │  │  │  │  ├── per_adv.sh
│  │  │  │  │  │  │  │  ├── per_adv_app_not_scanning.sh
│  │  │  │  │  │  │  │  ├── per_adv_app_not_scanning_coded.sh
│  │  │  │  │  │  │  │  ├── per_adv_conn.sh
│  │  │  │  │  │  │  │  ├── per_adv_conn_privacy.sh
│  │  │  │  │  │  │  │  │ per_adv_long_data.sh
│  │  │  │  │  ├── att
│  │  │  │  │  │  ├── eatt
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  ├── main_autoconnect.c
│  │  │  │  │  │  │  │  ├── main_collision.c
│  │  │  │  │  │  │  │  ├── main_lowres.c
│  │  │  │  │  │  │  │  │ main_reconfigure.c
│  │  │  │  │  │  │  ├── tests_scripts
│  │  │  │  │  │  │  │  ├── autoconnect.sh
│  │  │  │  │  │  │  │  ├── collision.sh
│  │  │  │  │  │  │  │  ├── lowres.sh
│  │  │  │  │  │  │  │  │ multiple_conn.sh
│  │  │  │  │  │  ├── eatt_notif
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── client_test.c
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  │ server_test.c
│  │  │  │  │  │  │  ├── test_scripts
│  │  │  │  │  │  │  │  │ eatt_notif.sh
│  │  │  │  │  │  ├── mtu_update
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  ├── main_central.c
│  │  │  │  │  │  │  │  │ main_peripheral.c
│  │  │  │  │  │  │  ├── test_scripts
│  │  │  │  │  │  │  │  │ run_test.sh
│  │  │  │  │  │  ├── pipeline
│  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  │ utils.h
│  │  │  │  │  │  │  ├── dut
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │  ├── tester
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  ├── read_fill_buf
│  │  │  │  │  │  │  ├── bs_macro.h
│  │  │  │  │  │  │  ├── bs_main.c
│  │  │  │  │  │  │  ├── client
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │  ├── server
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │  ├── test_scripts
│  │  │  │  │  │  │  │  │ run_tests.sh
│  │  │  │  │  │  ├── retry_on_sec_err
│  │  │  │  │  │  │  ├── client
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │  ├── server
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │  ├── test_utils.c
│  │  │  │  │  │  │  │ test_utils.h
│  │  │  │  │  │  ├── sequential
│  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  ├── common_defs.h
│  │  │  │  │  │  │  │  │ utils.h
│  │  │  │  │  │  │  ├── dut
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │  ├── tester
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  ├── central
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── dummy_peripheral.c
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  ├── gatt
│  │  │  │  │  │  ├── authorization
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  ├── gatt_client_test.c
│  │  │  │  │  │  │  │  │ gatt_server_test.c
│  │  │  │  │  │  │  ├── test_scripts
│  │  │  │  │  │  │  │  │ gatt.sh
│  │  │  │  │  │  ├── caching
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  ├── gatt_client_test.c
│  │  │  │  │  │  │  │  │ gatt_server_test.c
│  │  │  │  │  │  ├── ccc_store
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── overlay-no_store_on_write.conf
│  │  │  │  │  │  │  ├── prj_2.conf
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── central.c
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  │ peripheral.c
│  │  │  │  │  │  │  ├── test_scripts
│  │  │  │  │  │  │  │  │ ccc_no_store_on_write.sh
│  │  │  │  │  │  │  │ testcase.yaml
│  │  │  │  │  │  ├── device_name
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── client.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  │ server.c
│  │  │  │  │  │  │  ├── test_scripts
│  │  │  │  │  │  │  │  │ run_device_name.sh
│  │  │  │  │  │  │  │ testcase.yaml
│  │  │  │  │  │  ├── general
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  ├── gatt_client_test.c
│  │  │  │  │  │  │  │  │ gatt_server_test.c
│  │  │  │  │  │  │  ├── test_scripts
│  │  │  │  │  │  │  │  │ gatt.sh
│  │  │  │  │  │  ├── notify
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  ├── gatt_client_test.c
│  │  │  │  │  │  │  │  │ gatt_server_test.c
│  │  │  │  │  │  ├── notify_multiple
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  ├── gatt_client_test.c
│  │  │  │  │  │  │  │  │ gatt_server_test.c
│  │  │  │  │  │  ├── sc_indicate
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── bs_bt_utils.c
│  │  │  │  │  │  │  │  ├── bs_bt_utils.h
│  │  │  │  │  │  │  │  ├── central.c
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  │ peripheral.c
│  │  │  │  │  │  ├── settings
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── overlay-privacy.conf
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── client.c
│  │  │  │  │  │  │  │  ├── gatt_utils.c
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── server.c
│  │  │  │  │  │  │  │  ├── utils.c
│  │  │  │  │  │  │  │  │ utils.h
│  │  │  │  │  │  │  ├── test_scripts
│  │  │  │  │  │  │  │  │ run_gatt_settings_privacy.sh
│  │  │  │  │  │  │  │ testcase.yaml
│  │  │  │  │  │  ├── settings_clear
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── client.c
│  │  │  │  │  │  │  │  │ server.c
│  │  │  │  │  ├── id
│  │  │  │  │  │  ├── settings
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  ├── dut.c
│  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  ├── iso
│  │  │  │  │  │  ├── bis
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── bis_broadcaster.c
│  │  │  │  │  │  │  │  ├── bis_receiver.c
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  │ common.h
│  │  │  │  │  │  ├── cis
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── cis_central.c
│  │  │  │  │  │  │  │  ├── cis_peripheral.c
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  │ common.h
│  │  │  │  │  │  ├── frag
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │ broadcaster.c
│  │  │  │  │  │  ├── frag_2
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │ broadcaster.c
│  │  │  │  │  ├── l2cap
│  │  │  │  │  │  ├── credits
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── overlay-ecred.conf
│  │  │  │  │  │  │  ├── prj_ecred.conf
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │  ├── testcase.yaml
│  │  │  │  │  │  │  ├── tests_scripts
│  │  │  │  │  │  │  │  │ l2cap_credits_ecred.sh
│  │  │  │  │  │  ├── credits_seg_recv
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── overlay-ecred.conf
│  │  │  │  │  │  │  ├── prj_ecred.conf
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │  ├── testcase.yaml
│  │  │  │  │  │  │  ├── tests_scripts
│  │  │  │  │  │  │  │  │ l2cap_credits_seg_recv_ecred.sh
│  │  │  │  │  │  ├── general
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  │ main_l2cap_ecred.c
│  │  │  │  │  │  ├── many_conns
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  ├── multilink_peripheral
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │ dut.c
│  │  │  │  │  │  ├── reassembly
│  │  │  │  │  │  │  ├── dut
│  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │ dut.c
│  │  │  │  │  │  │  ├── peer
│  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │ peer.c
│  │  │  │  │  │  ├── send_on_connect
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── overlay-ecred.conf
│  │  │  │  │  │  │  ├── prj_ecred.conf
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  │ main_l2cap_send_on_connect.c
│  │  │  │  │  │  │  ├── testcase.yaml
│  │  │  │  │  │  │  ├── tests_scripts
│  │  │  │  │  │  │  │  │ l2cap.sh
│  │  │  │  │  │  ├── split
│  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  │ utils.h
│  │  │  │  │  │  │  ├── dut
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │  ├── tester
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  ├── stress
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── overlay-nofrag.conf
│  │  │  │  │  │  │  ├── overlay-syswq.conf
│  │  │  │  │  │  │  ├── prj_nofrag.conf
│  │  │  │  │  │  │  ├── prj_syswq.conf
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │  ├── testcase.yaml
│  │  │  │  │  │  │  ├── tests_scripts
│  │  │  │  │  │  │  │  ├── l2cap_nofrag.sh
│  │  │  │  │  │  │  │  │ l2cap_syswq.sh
│  │  │  │  │  │  ├── userdata
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  │ main_l2cap_userdata.c
│  │  │  │  │  ├── misc
│  │  │  │  │  │  ├── acl_tx_frag
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── dut.c
│  │  │  │  │  │  │  │  │ peer.c
│  │  │  │  │  │  ├── conn_stress
│  │  │  │  │  │  │  ├── central
│  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │  ├── peripheral
│  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  ├── disable
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  ├── gatt_client_test.c
│  │  │  │  │  │  │  │  ├── gatt_server_test.c
│  │  │  │  │  │  │  │  │ main_disable.c
│  │  │  │  │  │  ├── disconnect
│  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  ├── sync.c
│  │  │  │  │  │  │  │  ├── sync.h
│  │  │  │  │  │  │  │  │ utils.h
│  │  │  │  │  │  │  ├── dut
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │  ├── tester
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  ├── hfc
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  │ utils.h
│  │  │  │  │  │  ├── sample_test
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── dut.c
│  │  │  │  │  │  │  │  │ peer.c
│  │  │  │  │  │  ├── unregister_conn_cb
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  ├── privacy
│  │  │  │  │  │  ├── central
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── bs_bt_utils.c
│  │  │  │  │  │  │  │  ├── bs_bt_utils.h
│  │  │  │  │  │  │  │  ├── dut.c
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  │ tester.c
│  │  │  │  │  │  ├── device
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── test_undirected_central.c
│  │  │  │  │  │  │  │  ├── test_undirected_main.c
│  │  │  │  │  │  │  │  │ test_undirected_peripheral.c
│  │  │  │  │  │  │  ├── test_scripts
│  │  │  │  │  │  │  │  │ run_tests.sh
│  │  │  │  │  │  ├── legacy
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── bs_bt_utils.c
│  │  │  │  │  │  │  │  ├── bs_bt_utils.h
│  │  │  │  │  │  │  │  ├── dut.c
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  │ tester.c
│  │  │  │  │  │  ├── peripheral
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── bs_bt_utils.c
│  │  │  │  │  │  │  │  ├── bs_bt_utils.h
│  │  │  │  │  │  │  │  ├── dut_rpa_expired.c
│  │  │  │  │  │  │  │  ├── dut_rpa_rotation.c
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── main_rpa_expired.c
│  │  │  │  │  │  │  │  ├── main_rpa_rotation.c
│  │  │  │  │  │  │  │  ├── tester_rpa_expired.c
│  │  │  │  │  │  │  │  │ tester_rpa_rotation.c
│  │  │  │  │  ├── scan
│  │  │  │  │  │  ├── start_stop
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │ main.c
│  │  │  │  │  ├── security
│  │  │  │  │  │  ├── bond_overwrite_allowed
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── bs_bt_utils.c
│  │  │  │  │  │  │  │  ├── bs_bt_utils.h
│  │  │  │  │  │  │  │  ├── central.c
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  │ peripheral.c
│  │  │  │  │  │  ├── bond_overwrite_denied
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── bs_bt_utils.c
│  │  │  │  │  │  │  │  ├── bs_bt_utils.h
│  │  │  │  │  │  │  │  ├── central.c
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  │ peripheral.c
│  │  │  │  │  │  ├── bond_per_connection
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── bs_bt_utils.c
│  │  │  │  │  │  │  │  ├── bs_bt_utils.h
│  │  │  │  │  │  │  │  ├── central.c
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  │ peripheral.c
│  │  │  │  │  │  ├── ccc_update
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── overlay-no_lazy_load.conf
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── central.c
│  │  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  │ peripheral.c
│  │  │  │  │  │  │  ├── test_scripts
│  │  │  │  │  │  │  │  │ ccc_update_no_lazy_load.sh
│  │  │  │  │  │  │  │ testcase.yaml
│  │  │  │  │  │  ├── id_addr_update
│  │  │  │  │  │  │  ├── central
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  ├── central.c
│  │  │  │  │  │  │  │  │  ├── utils.c
│  │  │  │  │  │  │  │  │  │ utils.h
│  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  │ bs_bt_utils.h
│  │  │  │  │  │  │  ├── peripheral
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  ├── peripheral.c
│  │  │  │  │  │  │  │  │  ├── utils.c
│  │  │  │  │  │  │  │  │  │ utils.h
│  │  │  │  │  │  ├── security_changed_callback
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── bs_bt_utils.c
│  │  │  │  │  │  │  │  ├── bs_bt_utils.h
│  │  │  │  │  │  │  │  ├── central.c
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  │ peripheral.c
│  │  │  │  ├── mesh
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── compile.sh
│  │  │  │  │  ├── overlay_gatt.conf
│  │  │  │  │  ├── overlay_gatt_separate.conf
│  │  │  │  │  ├── overlay_multi_adv_sets.conf
│  │  │  │  │  ├── overlay_pst.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  ├── psa_its_emul.c
│  │  │  │  │  │  ├── test_advertiser.c
│  │  │  │  │  │  │ test_provision.c
│  │  │  │  │  ├── tests_scripts
│  │  │  │  │  │  ├── advertiser
│  │  │  │  │  │  │  ├── cancel.sh
│  │  │  │  │  │  │  ├── proxy_mixin.sh
│  │  │  │  │  │  │  ├── random_order.sh
│  │  │  │  │  │  │  ├── relay.sh
│  │  │  │  │  │  │  ├── reverse_order.sh
│  │  │  │  │  │  │  ├── send_order.sh
│  │  │  │  │  │  │  ├── terminate.sh
│  │  │  │  │  │  │  ├── tx_cb_multi.sh
│  │  │  │  │  │  │  │ tx_cb_single.sh
│  │  │  │  │  │  ├── provision
│  │  │  │  │  │  │  ├── pb_adv_multi.sh
│  │  │  │  │  │  │  ├── pb_adv_no_oob.sh
│  │  │  │  │  │  │  ├── pb_adv_oob_auth_oob_pk.sh
│  │  │  │  │  │  │  ├── pb_adv_reprovision.sh
│  │  │  │  │  │  │  ├── pb_remote_parallel.sh
│  │  │  │  │  │  │  ├── pb_remote_reprovision.sh
│  │  │  │  │  │  │  ├── pb_remote_timeout.sh
│  │  │  │  │  │  │  ├── prov_multi.sh
│  │  │  │  │  │  │  ├── prov_no_oob.sh
│  │  │  │  │  │  │  ├── prov_oob_auth_ib_pk.sh
│  │  │  │  │  │  │  ├── prov_oob_auth_ignore_oob_pk.sh
│  │  │  │  │  │  │  ├── prov_oob_auth_oob_pk.sh
│  │  │  │  │  │  │  │ prov_reprovision.sh
│  │  │  │  ├── samples
│  │  │  │  │  ├── battery_service
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ central_test.c

Outputs:

Toolchain

Version: 4cff34261a
Build docker image: docker-dtr.nordicsemi.no/sw-production/ncs-build:4cff34261a_bece0367df

Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped; ⚠️ Quarantine

  • ◻️ Toolchain - Skipped: existing toolchain is used
  • ✅ Build twister
    • sdk-nrf test count: 1349
    • sdk-zephyr test count: 872
  • ✅ Integration tests
    • ✅ test-sdk-audio
    • ✅ desktop52_verification
    • ✅ test_ble_nrf_config
    • ✅ test-fw-nrfconnect-ble_mesh
    • ✅ test-fw-nrfconnect-ble_samples
    • ✅ test-fw-nrfconnect-chip
    • ✅ test-fw-nrfconnect-nfc
    • ✅ test-fw-nrfconnect-nrf-iot_thingy91
    • ✅ test-fw-nrfconnect-nrf_crypto
    • ✅ test-fw-nrfconnect-rs
    • ✅ test-fw-nrfconnect-fem
    • ✅ test-fw-nrfconnect-thread
    • ✅ test-sdk-find-my
    • ✅ test-sdk-sidewalk
    • ✅ test-low-level
    • ✅ test-sdk-dfu
Disabled integration tests
    • doc-internal
    • test-fw-nrfconnect-apps
    • test-fw-nrfconnect-boot
    • test-fw-nrfconnect-nrf-iot_cloud
    • test-fw-nrfconnect-nrf-iot_lwm2m
    • test-fw-nrfconnect-nrf-iot_mosh
    • test-fw-nrfconnect-nrf-iot_positioning
    • test-fw-nrfconnect-nrf-iot_samples
    • test-fw-nrfconnect-nrf-iot_serial_lte_modem
    • test-fw-nrfconnect-nrf-iot_zephyr_lwm2m
    • test-fw-nrfconnect-proprietary_esb
    • test-fw-nrfconnect-ps
    • test-fw-nrfconnect-rpc
    • test-fw-nrfconnect-tfm
    • test-fw-nrfconnect-zigbee
    • test-sdk-mcuboot
    • test-sdk-pmic-samples
    • test-sdk-wifi
    • test-secdom-samples-public

Note: This message is automatically posted and updated by the CI

@NordicBuilder
Copy link
Contributor

You can find the documentation preview for this PR at this link.

Note: This comment is automatically posted by the Documentation Publish GitHub Action.

@m-alperen-sener m-alperen-sener force-pushed the ble_host_mesh_fix_cherrypick_revision branch 4 times, most recently from 6a7229f to d809ff3 Compare February 19, 2025 15:06
@m-alperen-sener m-alperen-sener force-pushed the ble_host_mesh_fix_cherrypick_revision branch from d809ff3 to b67d657 Compare February 20, 2025 12:56
Copy link

github-actions bot commented Feb 20, 2025

After documentation is built, you will find the preview for this PR here.

@m-alperen-sener m-alperen-sener force-pushed the ble_host_mesh_fix_cherrypick_revision branch from b67d657 to 6a81cb5 Compare February 20, 2025 12:57
@NordicBuilder NordicBuilder removed the DNM label Feb 20, 2025
Update sdk-zephyr revision for host and mesh fixes.

Signed-off-by: alperen sener <[email protected]>
Mesh currently uses TRSUTED_STORAGE backend. Overwriting the
default SECURE_STORAGE with TRSUTED_STORAGE.

Signed-off-by: alperen sener <[email protected]>
@m-alperen-sener m-alperen-sener force-pushed the ble_host_mesh_fix_cherrypick_revision branch from 6a81cb5 to f041091 Compare February 20, 2025 14:01
@rlubos rlubos merged commit 34740f1 into nrfconnect:main Feb 20, 2025
14 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ble mesh Label for ble mesh PRbot. Add this if PR is related to ble mesh and you need to get review. changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. manifest manifest-zephyr
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants