Error Occurs When IMG Data is Moved to NOR Flash in Linker
I encountered an issue where an error occurs when only the image data is moved to NOR Flash in the linker. I have already verified that the NOR Flash works correctly in a separate project by toggling the LEDs.
In my current TouchGFX project, I enabled the NOR Flash in the IDE, and I am able to read the data in the memory browser, confirming that the same data is present.
However, when I choose my custom loader in the debug configuration and try to debug,
If I remove the ext_flash section from the linker, I am able to debug and see the data in the memory browser.but its just txbuffer data(0xD20F- increases) My question is, if this error is resolved, will I be able to see the image data in the memory browser? This would help me confirm that the NOR Flash is indeed storing the image data correctly.
Any insights on why this might be happening or suggestions for resolving this issue?I get the following error:

ExtFlashSection :
{
. = ALIGN(4);
*(.ExtFlashSection)
*(.ext_flash*)
KEEP(*(.image*))
KEEP(*(.img*))
KEEP(*(.assets*))
. = ALIGN(4);
} >EXT_FLASH
