You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
374 B
20 lines
374 B
/* |
|
* Copyright (c) 2022 Espressif Systems (Shanghai) Co., Ltd. |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
/** |
|
* @file |
|
* @brief Linker command/script file |
|
* |
|
*/ |
|
|
|
#if defined(CONFIG_MCUBOOT) |
|
/* Using mcuboot as ESP32C3 2nd stage bootloader */ |
|
#include "mcuboot.ld" |
|
|
|
#else |
|
/* Application default linker script */ |
|
#include "default.ld" |
|
|
|
#endif /* CONFIG_MCUBOOT */
|
|
|