zephyr/boards/renesas/ek_ra8d1/sdram.ld
The Nguyen 3bb3a9626f boards: shields: add support for rtkmipilcdb00000be shield
First commit to support rtkmipilcdb00000be display shield

Signed-off-by: The Nguyen <the.nguyen.yf@renesas.com>
2024-12-20 23:53:37 +02:00

19 lines
332 B
Text

/*
* Copyright (c) 2024 Renesas Electronics Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#if DT_NODE_HAS_STATUS(DT_NODELABEL(sdram1), okay)
SECTION_DATA_PROLOGUE(.sdram,(NOLOAD),)
{
__SDRAM_Start = .;
KEEP(*(.sdram*))
#ifdef CONFIG_LVGL
KEEP(*(.lvgl_buf*))
#endif
__SDRAM_End = .;
} GROUP_LINK_IN(SDRAM)
#endif