mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-04-04 09:25:56 +00:00
core: copy firmware header for T1 port into final binary
This commit is contained in:
parent
d8115a7992
commit
e429085e96
@ -626,7 +626,7 @@ if env.get('TREZOR_MODEL') == 'T':
|
||||
]
|
||||
else:
|
||||
action_bin=[
|
||||
'$OBJCOPY -O binary -j .flash -j .data $SOURCE $TARGET',
|
||||
'$OBJCOPY -O binary -j .header -j .flash -j .data $SOURCE $TARGET',
|
||||
]
|
||||
|
||||
program_bin = env.Command(
|
||||
|
@ -26,7 +26,7 @@ sram_end = ORIGIN(SRAM) + LENGTH(SRAM);
|
||||
_ram_start = sram_start;
|
||||
_ram_end = sram_end;
|
||||
|
||||
_codelen = LENGTH(FLASH);
|
||||
_codelen = SIZEOF(.flash) + SIZEOF(.data) + SIZEOF(.ARM.exidx);
|
||||
_flash_start = ORIGIN(FLASH);
|
||||
_flash_end = ORIGIN(FLASH) + LENGTH(FLASH);
|
||||
_heap_start = ADDR(.heap);
|
||||
|
Loading…
Reference in New Issue
Block a user