@@ -143,34 +143,34 @@ void esp_app_image_load(int image_index, int slot,
143
143
144
144
/* Unless waking from deep sleep (implying RTC memory is intact), load its segments */
145
145
if (reset_reason != RESET_REASON_CORE_DEEP_SLEEP ) {
146
- BOOT_LOG_INF ("%s_RAM segment: paddr =%08xh, vaddr =%08xh, size=%05xh (%6d) load" , LP_RTC_PREFIX ,
146
+ BOOT_LOG_INF ("%s_RAM\t: lma =%08xh vma =%08xh size=%05xh (%6d) load" , LP_RTC_PREFIX ,
147
147
(fap -> fa_off + load_header .lp_rtc_dram_flash_offset ), load_header .lp_rtc_dram_dest_addr ,
148
148
load_header .lp_rtc_dram_size , load_header .lp_rtc_dram_size );
149
149
load_segment (fap , load_header .lp_rtc_dram_flash_offset ,
150
150
load_header .lp_rtc_dram_size , load_header .lp_rtc_dram_dest_addr );
151
151
} else {
152
- BOOT_LOG_INF ("%s_RAM segment: paddr =%08xh, vaddr =%08xh, size=%05xh (%6d) noload" , LP_RTC_PREFIX ,
152
+ BOOT_LOG_INF ("%s_RAM\t: lma =%08xh vma =%08xh size=%05xh (%6d) noload" , LP_RTC_PREFIX ,
153
153
load_header .lp_rtc_dram_flash_offset , load_header .lp_rtc_dram_dest_addr ,
154
154
load_header .lp_rtc_dram_size , load_header .lp_rtc_dram_size );
155
155
}
156
156
}
157
157
158
158
if (load_header .lp_rtc_iram_size > 0 ) {
159
- BOOT_LOG_INF ("%s_IRAM segment: paddr =%08xh, vaddr =%08xh, size=%05xh (%6d) load" , LP_RTC_PREFIX ,
159
+ BOOT_LOG_INF ("%s_IRAM\t: lma =%08xh vma =%08xh size=%05xh (%6d) load" , LP_RTC_PREFIX ,
160
160
(fap -> fa_off + load_header .lp_rtc_iram_flash_offset ), load_header .lp_rtc_iram_dest_addr ,
161
161
load_header .lp_rtc_iram_size , load_header .lp_rtc_iram_size );
162
162
load_segment (fap , load_header .lp_rtc_iram_flash_offset ,
163
163
load_header .lp_rtc_iram_size , load_header .lp_rtc_iram_dest_addr );
164
164
}
165
165
#endif
166
166
167
- BOOT_LOG_INF ("DRAM segment: paddr =%08xh, vaddr =%08xh, size=%05xh (%6d) load" ,
167
+ BOOT_LOG_INF ("DRAM\t: lma =%08xh vma =%08xh size=%05xh (%6d) load" ,
168
168
(fap -> fa_off + load_header .dram_flash_offset ), load_header .dram_dest_addr ,
169
169
load_header .dram_size , load_header .dram_size );
170
170
load_segment (fap , load_header .dram_flash_offset ,
171
171
load_header .dram_size , load_header .dram_dest_addr );
172
172
173
- BOOT_LOG_INF ("IRAM segment: paddr =%08xh, vaddr =%08xh, size=%05xh (%6d) load" ,
173
+ BOOT_LOG_INF ("IRAM\t: lma =%08xh vma =%08xh size=%05xh (%6d) load" ,
174
174
(fap -> fa_off + load_header .iram_flash_offset ), load_header .iram_dest_addr ,
175
175
load_header .iram_size , load_header .iram_size );
176
176
load_segment (fap , load_header .iram_flash_offset ,
0 commit comments