Firmware Update via UART and/or USB #398

This commit is contained in:
rusefi 2019-04-01 03:02:50 -04:00
parent 92bad7286f
commit 00d5fbc7c4
4 changed files with 922 additions and 821 deletions

View File

@ -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

View File

@ -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)

View File

@ -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