1#
2# Copyright (c) 2020 Seagate Technology LLC
3#
4# SPDX-License-Identifier: Apache-2.0
5#
6
7set_property(GLOBAL APPEND PROPERTY extra_post_build_commands
8  # Insert checksum (verified by the bootloader) into the zephyr.bin
9  # and zephyr.hex images.
10  COMMAND lpc_checksum -f hex ${CMAKE_BINARY_DIR}/zephyr/${KERNEL_HEX_NAME}
11  COMMAND lpc_checksum -f bin ${CMAKE_BINARY_DIR}/zephyr/${KERNEL_BIN_NAME}
12  )
13