forked from openwrt/openwrt
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'openwrt:main' into mx4300-foss
- Loading branch information
Showing
74 changed files
with
1,781 additions
and
415 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
LINUX_VERSION-6.6 = .60 | ||
LINUX_KERNEL_HASH-6.6.60 = 52f9e32d5082ab94253447fd66670d0c3bb765cfcb99b0bf61d1b8eae25952ef | ||
LINUX_VERSION-6.6 = .61 | ||
LINUX_KERNEL_HASH-6.6.61 = 418fc24df9190f1c3ed9906dc3b7651c2a2eae5c1cb9ab4a6348e20faf047c0b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
package/boot/uboot-mediatek/patches/457-initialized-the-watchdog-subsystem-later.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
From 9c1ad8a18ac1a20aee7a617964bcae3e90dac700 Mon Sep 17 00:00:00 2001 | ||
From: Enrico Mioso <[email protected]> | ||
Date: Wed, 23 Oct 2024 17:46:35 +0200 | ||
Subject: [PATCH] uboot-mediatek: initialized the watchdog subsystem later | ||
|
||
Initialize the watchdog subsystem later during initialization, to allow for | ||
the gpio-wdt driver to work. | ||
|
||
Signed-off-by: Enrico Mioso <[email protected]> | ||
--- | ||
common/board_r.c | 11 ++++------- | ||
1 file changed, 4 insertions(+), 7 deletions(-) | ||
|
||
--- a/common/board_r.c | ||
+++ b/common/board_r.c | ||
@@ -663,19 +663,13 @@ static init_fnc_t init_sequence_r[] = { | ||
serial_initialize, | ||
initr_announce, | ||
dm_announce, | ||
-#if CONFIG_IS_ENABLED(WDT) | ||
- initr_watchdog, | ||
-#endif | ||
- INIT_FUNC_WATCHDOG_RESET | ||
arch_initr_trap, | ||
#if defined(CONFIG_BOARD_EARLY_INIT_R) | ||
board_early_init_r, | ||
#endif | ||
- INIT_FUNC_WATCHDOG_RESET | ||
#ifdef CONFIG_POST | ||
post_output_backlog, | ||
#endif | ||
- INIT_FUNC_WATCHDOG_RESET | ||
#if defined(CONFIG_PCI_INIT_R) && defined(CONFIG_SYS_EARLY_PCI_INIT) | ||
/* | ||
* Do early PCI configuration _before_ the flash gets initialised, | ||
@@ -690,7 +684,6 @@ static init_fnc_t init_sequence_r[] = { | ||
#ifdef CONFIG_MTD_NOR_FLASH | ||
initr_flash, | ||
#endif | ||
- INIT_FUNC_WATCHDOG_RESET | ||
#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_X86) | ||
/* initialize higher level parts of CPU like time base and timers */ | ||
cpu_init_r, | ||
@@ -719,6 +712,10 @@ static init_fnc_t init_sequence_r[] = { | ||
#ifdef CONFIG_PVBLOCK | ||
initr_pvblock, | ||
#endif | ||
+#if CONFIG_IS_ENABLED(WDT) | ||
+ initr_watchdog, | ||
+#endif | ||
+ INIT_FUNC_WATCHDOG_RESET | ||
initr_env, | ||
#ifdef CONFIG_SYS_MALLOC_BOOTPARAMS | ||
initr_malloc_bootparams, |
Oops, something went wrong.