Firmware Update via UART and/or USB #398
This commit is contained in:
parent
92bad7286f
commit
00d5fbc7c4
|
@ -81,7 +81,7 @@ ifeq ($(USE_SMART_BUILD),)
|
|||
endif
|
||||
|
||||
ifeq ($(USE_BOOTLOADER),)
|
||||
USE_BOOTLOADER = no
|
||||
USE_BOOTLOADER = yes
|
||||
endif
|
||||
|
||||
ifeq ($(USE_FATFS),)
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -84,7 +84,7 @@ REGION_ALIAS("BSS_RAM", ram0);
|
|||
/* RAM region to be used for the default heap.*/
|
||||
REGION_ALIAS("HEAP_RAM", ram0);
|
||||
|
||||
/* Bootloader section */
|
||||
/* rusEfi Bootloader section */
|
||||
SECTIONS
|
||||
{
|
||||
.bl : ALIGN(4)
|
||||
|
|
|
@ -85,5 +85,17 @@ REGION_ALIAS("BSS_RAM", ram0);
|
|||
/* RAM region to be used for the default heap.*/
|
||||
REGION_ALIAS("HEAP_RAM", ram0);
|
||||
|
||||
/* rusEfi Bootloader section */
|
||||
SECTIONS
|
||||
{
|
||||
.bl : ALIGN(4)
|
||||
{
|
||||
. = ALIGN(4);
|
||||
*(.bl)
|
||||
*(.bl.*)
|
||||
. = ALIGN(4);
|
||||
} > bl AT > bl
|
||||
}
|
||||
|
||||
/* Generic rules inclusion.*/
|
||||
INCLUDE rules.ld
|
||||
|
|
Loading…
Reference in New Issue