You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the sizes of text, data and bss sections are define separately (soc/xtensa/intel_s1000/memory.h)
The linker script (soc/xtensa/intel_s1000/linker.ld) uses these definitions for appropriately sizing the corresponding sections.
Depending on the application, the code/data sizes vary and this often results in updating the section size definitions in soc/xtensa/intel_s1000/memory.h
Since all these sections are mapped to the same physical memory block, it would be more flexible for application developers if the individual section limits are removed and there is only one limit defined for the sum of text, data and bss sections.
The text was updated successfully, but these errors were encountered:
All text, data and bss sections are all mapped to the same physical
memory (SRAM). This patch removes the individual section limits
and defines a common limit for the sum of text, data and bss sections.
This would make it more flexible for application developers.
Fixeszephyrproject-rtos#11268.
Signed-off-by: Rajavardhan Gundi <[email protected]>
All text, data and bss sections are all mapped to the same physical
memory (SRAM). This patch removes the individual section limits
and defines a common limit for the sum of text, data and bss sections.
This would make it more flexible for application developers.
Fixes#11268.
Signed-off-by: Rajavardhan Gundi <[email protected]>
Currently, the sizes of text, data and bss sections are define separately (
soc/xtensa/intel_s1000/memory.h
)The linker script (
soc/xtensa/intel_s1000/linker.ld
) uses these definitions for appropriately sizing the corresponding sections.Depending on the application, the code/data sizes vary and this often results in updating the section size definitions in
soc/xtensa/intel_s1000/memory.h
Since all these sections are mapped to the same physical memory block, it would be more flexible for application developers if the individual section limits are removed and there is only one limit defined for the sum of text, data and bss sections.
The text was updated successfully, but these errors were encountered: