Add new RT118x device, due to structure is different from rt11xx series. Boot header also differ from rt10xx and rt11xx, so add support for boot container. define new container name and new container tag Signed-off-by: Lucien Zhao <lucien.zhao@nxp.com>
10 lines
249 B
Text
10 lines
249 B
Text
/*
|
|
* Copyright 2024 NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#if defined(CONFIG_SOC_SERIES_IMXRT118X) && CONFIG_NXP_IMXRT_BOOT_HEADER
|
|
__CONTAINER_IMG_OFFSET = CONFIG_CONTAINER_USER_IMAGE_OFFSET;
|
|
__CONTAINER_IMG_SIZE = _flash_used;
|
|
#endif
|