From d32c3358a53ce67082efb2c869a58d6bc0dc22bc Mon Sep 17 00:00:00 2001 From: qqwang Date: Thu, 5 Aug 2021 17:32:19 +0800 Subject: [PATCH] [chore] fix boot2 iap linkscript --- drivers/bl702_driver/blsp_boot2_iap_flash.ld | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/bl702_driver/blsp_boot2_iap_flash.ld b/drivers/bl702_driver/blsp_boot2_iap_flash.ld index 780e2a6d..0efb9ea8 100644 --- a/drivers/bl702_driver/blsp_boot2_iap_flash.ld +++ b/drivers/bl702_driver/blsp_boot2_iap_flash.ld @@ -18,15 +18,15 @@ INPUT(-lgcc) ENTRY(_enter) StackSize = 0x1000; /* 4KB */ -HeapSize = 0x1000; /* 4KB */ +HeapSize = 0x0; /* 0KB */ PROVIDE(__boot2_pass_param_addr = 0x4202F000);/* 0x42020000 + 60 * 1024 */ MEMORY { xip_memory (rx) : ORIGIN = 0x23000000, LENGTH = 64K itcm_memory (rx) : ORIGIN = 0x22014000, LENGTH = 16K - dtcm_memory (rx) : ORIGIN = 0x42018000, LENGTH = 32K - ram_memory (!rx) : ORIGIN = 0x42020000, LENGTH = 60K + dtcm_memory (rx) : ORIGIN = 0x42018000, LENGTH = 4K + ram_memory (!rx) : ORIGIN = 0x42019000/*0x42020000*/, LENGTH = 88K } SECTIONS