mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-28 17:45:22 +00:00
This commit introduces boards/deprecated.cmake to allow deprecation of existing boards, when a board is renamed. This allows users to still specify the old board name, and let Zephyr build system to select the new board name. Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
12 lines
435 B
CMake
12 lines
435 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# This file contains boards in Zephyr which has been replaced with a new board
|
|
# name.
|
|
# This allows the system to automatically change the board while at the same
|
|
# time prints a warning to the user, that the board name is deprecated.
|
|
#
|
|
# To add a board rename, add a line in following format:
|
|
# set(<old_board_name>_DEPRECATED <new_board_name>)
|
|
|
|
set(nrf51_pca10028_DEPRECATED nrf51dk_nrf51422)
|