Commit bf700bea authored by Jérôme Pouiller's avatar Jérôme Pouiller Committed by Mahesh Mahadevan
Browse files

boards: silabs: Uniformize board.cmake



All the board.cmake contains more or less the same data. This patch
applies the cosmetics changes to align the structure of all these files.

Signed-off-by: default avatarJérôme Pouiller <jerome.pouiller@silabs.com>
parent 824a2411
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
# Copyright (c) 2018, Evry ASA
#
# SPDX-License-Identifier: Apache-2.0
#

board_runner_args(jlink "--device=EFR32MG12PxxxF1024")
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
+0 −2
Original line number Diff line number Diff line
# Copyright (c) 2021, Sateesh Kotapati
#
# SPDX-License-Identifier: Apache-2.0
#

board_runner_args(jlink "--device=EFR32MG24BxxxF1536" "--reset-after-load")
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
+1 −0
Original line number Diff line number Diff line
@@ -3,5 +3,6 @@

board_runner_args(jlink "--device=EFR32BG27CxxxF768" "--reset-after-load")
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)

board_runner_args(silabs_commander "--device=EFR32BG27C140F768IM40")
include(${ZEPHYR_BASE}/boards/common/silabs_commander.board.cmake)
+2 −2
Original line number Diff line number Diff line
# SPDX-License-Identifier: Apache-2.0

board_runner_args(openocd)
board_runner_args(jlink "--device=EFR32BG13PxxxF512")
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)

board_runner_args(openocd)
include(${ZEPHYR_BASE}/boards/common/openocd.board.cmake)
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
+2 −2
Original line number Diff line number Diff line
# SPDX-License-Identifier: Apache-2.0

board_runner_args(openocd)
board_runner_args(jlink "--device=EFR32MG12PxxxF1024")
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)

board_runner_args(openocd)
include(${ZEPHYR_BASE}/boards/common/openocd.board.cmake)
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
Loading