We've to ensure nothing blocks the watchdog init on startup, otherwise we'll get into bootloop. Hence increase the piority. Signed-off-by: Peter van der Perk <peter.vanderperk@nxp.com>
33 lines
427 B
Plaintext
33 lines
427 B
Plaintext
# Copyright 2023-2024 NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_MR_CANHUBK3
|
|
|
|
if SERIAL
|
|
|
|
config UART_CONSOLE
|
|
default y
|
|
|
|
endif # SERIAL
|
|
|
|
if SPI
|
|
|
|
config GPIO_INIT_PRIORITY
|
|
default 10
|
|
|
|
config SPI_INIT_PRIORITY
|
|
default 10
|
|
|
|
if WDT_NXP_FS26
|
|
|
|
config WDT_NXP_FS26_INIT_PRIORITY
|
|
default 10
|
|
|
|
endif # WDT_NXP_FS26
|
|
endif # SPI
|
|
|
|
configdefault NET_L2_ETHERNET
|
|
default y if !NET_LOOPBACK && !NET_TEST
|
|
|
|
endif # BOARD_MR_CANHUBK3
|