Fixed defmt on direct-boot mode

This commit is contained in:
9names 2022-09-04 18:08:58 -07:00 committed by Jesse Braham
parent dd1f94f347
commit c896e6c8d2

View File

@ -110,6 +110,16 @@ SECTIONS
_ebss = .;
} > REGION_BSS
/* ### .uninit */
.uninit (NOLOAD) : ALIGN(4)
{
. = ALIGN(4);
__suninit = .;
*(.uninit .uninit.*);
. = ALIGN(4);
__euninit = .;
} > REGION_BSS
/* fictitious region that represents the memory available for the heap */
.heap (NOLOAD) :
{