Skip to content

Commit

Permalink
[nrf fromlist] kernel: banner: Make function weak
Browse files Browse the repository at this point in the history
Makes the boot banner function weak, this resolves an issue when
building with llext enabled which uses different build options
than a normal zephyr build

Upstream PR: zephyrproject-rtos/zephyr#72400

Signed-off-by: Jamie McCrae <[email protected]>
  • Loading branch information
nordicjm authored and tejlmand committed May 7, 2024
1 parent b5cf304 commit 300dcd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/banner.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#endif /* BUILD_VERSION */
#endif /* !BANNER_VERSION */

void boot_banner(void)
__weak void boot_banner(void)
{
#if defined(CONFIG_BOOT_DELAY) && (CONFIG_BOOT_DELAY > 0)
printk("***** delaying boot " DELAY_STR "ms (per build configuration) *****\n");
Expand Down

0 comments on commit 300dcd3

Please sign in to comment.