bootloader: Force bootloader_image_hdr to be word aligned
Possible due to linker order for this file to be placed unaligned, causing failure from bootloader_flash_read() function.
This commit is contained in:
parent
d35226c656
commit
a5b4fda207
1 changed files with 2 additions and 1 deletions
|
@ -14,6 +14,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include "sdkconfig.h"
|
#include "sdkconfig.h"
|
||||||
|
#include "esp_attr.h"
|
||||||
#include "esp_log.h"
|
#include "esp_log.h"
|
||||||
#include "bootloader_init.h"
|
#include "bootloader_init.h"
|
||||||
#include "bootloader_flash.h"
|
#include "bootloader_flash.h"
|
||||||
|
@ -30,7 +31,7 @@
|
||||||
|
|
||||||
static const char *TAG = "boot";
|
static const char *TAG = "boot";
|
||||||
|
|
||||||
esp_image_header_t bootloader_image_hdr;
|
esp_image_header_t WORD_ALIGNED_ATTR bootloader_image_hdr;
|
||||||
|
|
||||||
void bootloader_clear_bss_section(void)
|
void bootloader_clear_bss_section(void)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue