From 40e1b890f2d9a2b832b32765316b000b4ab0d519 Mon Sep 17 00:00:00 2001 From: Erwan Gouriou Date: Tue, 27 Aug 2024 11:12:41 +0200 Subject: [PATCH] boards: nucleo_wba55cg: Update blob fetch command Following addition of a `name` to hal_stm32 module, the command to fetch blobs that are required to build BLE applications on STM32WBA socs is now changed from `west blob fetch stm32` to `west blob fetch hal_stm32`. Update documentation and warn users in migration guide. Signed-off-by: Erwan Gouriou --- boards/st/nucleo_wba55cg/doc/nucleo_wba55cg.rst | 2 +- doc/releases/migration-guide-4.0.rst | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/boards/st/nucleo_wba55cg/doc/nucleo_wba55cg.rst b/boards/st/nucleo_wba55cg/doc/nucleo_wba55cg.rst index 678b04db500..7444c39bd42 100644 --- a/boards/st/nucleo_wba55cg/doc/nucleo_wba55cg.rst +++ b/boards/st/nucleo_wba55cg/doc/nucleo_wba55cg.rst @@ -196,7 +196,7 @@ To fetch Binary Blobs: .. code-block:: console - west blobs fetch stm32 + west blobs fetch hal_stm32 Connections and IOs =================== diff --git a/doc/releases/migration-guide-4.0.rst b/doc/releases/migration-guide-4.0.rst index 7473f7f0eb2..e1d6b9d52aa 100644 --- a/doc/releases/migration-guide-4.0.rst +++ b/doc/releases/migration-guide-4.0.rst @@ -27,6 +27,9 @@ Boards * :ref:`native_posix` has been deprecated in favour of :ref:`native_sim` (:github:`76898`). +* STM32WBA: The command used for fetching blobs required to build ble applications is now + `west blobs fetch hal_stm32` instead of `west blobs fetch stm32`. + Modules *******