1/*
2 * Copyright (c) 2022 Espressif Systems (Shanghai) Co., Ltd.
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6/**
7 * @file
8 * @brief Linker command/script file
9 *
10 */
11
12#if defined(CONFIG_MCUBOOT)
13  /* Using mcuboot as ESP32S2 2nd stage bootloader */
14  #include "mcuboot.ld"
15
16#else
17  /* Application default linker script */
18  #include "default.ld"
19
20#endif /* CONFIG_MCUBOOT */
21