From 8b548da78d5c17266771f3e4bcee22f4133db619 Mon Sep 17 00:00:00 2001 From: Nedko Arnaudov Date: Sun, 1 Jul 2018 16:12:05 +0300 Subject: [PATCH] esp-idf-bootloader: Switch esp-idf bootloader entry point to apeos_boot() --- components/bootloader/subproject/main/esp32.bootloader.ld | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/bootloader/subproject/main/esp32.bootloader.ld b/components/bootloader/subproject/main/esp32.bootloader.ld index 4d23804..1e52427 100644 --- a/components/bootloader/subproject/main/esp32.bootloader.ld +++ b/components/bootloader/subproject/main/esp32.bootloader.ld @@ -1,4 +1,5 @@ /* Copyright 2015-2018 Espressif Systems (Shanghai) PTE LTD + * Copyright 2018 apeos contributors * * Linker file used to link the bootloader. * @@ -30,7 +31,7 @@ MEMORY } /* Default entry point: */ -ENTRY(call_start_cpu0); +ENTRY(apeos_boot); SECTIONS -- 2.11.4.GIT