mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
ca34e970f1
The patches include the following changes: - define ARRAY_SIZE in `component/spi_flash/spi_flash_timing_tuning.c` only if it is not yet defined by RIOT macros - add alternative implementations for`spi_flash_disable_interrupts_caches_and_other_cpu` and `spi_flash_enable_interrupts_caches_and_other_cpu` if compiled for RIOT - fix the undefined reference to `rtc_gpio_force_hold_en_all` in `components/driver/gpio.c` - rename the bootloader patch to fix the serial number
25 lines
844 B
Diff
25 lines
844 B
Diff
From c6789a3f627915ff7d9f6909c2202eac2cb9db0c Mon Sep 17 00:00:00 2001
|
|
From: Gunar Schorcht <gunar@schorcht.net>
|
|
Date: Tue, 31 May 2022 22:32:47 +0200
|
|
Subject: [PATCH 23/23] bootloader: remove compile time from banner
|
|
|
|
---
|
|
components/bootloader_support/src/bootloader_init.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/components/bootloader_support/src/bootloader_init.c b/components/bootloader_support/src/bootloader_init.c
|
|
index 1d73f5dc26..9e45b1d415 100644
|
|
--- a/components/bootloader_support/src/bootloader_init.c
|
|
+++ b/components/bootloader_support/src/bootloader_init.c
|
|
@@ -91,5 +91,7 @@ void bootloader_enable_random(void)
|
|
void bootloader_print_banner(void)
|
|
{
|
|
ESP_LOGI(TAG, "ESP-IDF %s 2nd stage bootloader", IDF_VER);
|
|
+#if 0 /* not used in RIOT */
|
|
ESP_LOGI(TAG, "compile time " __TIME__);
|
|
+#endif
|
|
}
|
|
--
|
|
2.17.1
|
|
|