mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-21 20:45:22 +00:00
Set the IPM console stack size only when the console is enabled. See #22474. Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
16 lines
268 B
Plaintext
16 lines
268 B
Plaintext
# Copyright (c) 2017 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_QEMU_XTENSA
|
|
|
|
config BUILD_OUTPUT_BIN
|
|
default n
|
|
|
|
config BOARD
|
|
default "qemu_xtensa"
|
|
|
|
config IPM_CONSOLE_STACK_SIZE
|
|
default 2048 if IPM_CONSOLE_RECEIVER
|
|
|
|
endif # BOARD_QEMU_XTENSA
|