1# Copyright (c) 2021, Sateesh Kotapati
2# SPDX-License-Identifier: Apache-2.0
3
4if BOARD_XG24_DK2601B
5
6if SOC_GECKO_USE_RAIL
7
8config FPU
9	default y
10
11endif # SOC_GECKO_USE_RAIL
12
13if BT
14
15config FPU
16	default y
17
18config COMMON_LIBC_MALLOC_ARENA_SIZE
19	default 8192
20
21config MAIN_STACK_SIZE
22	default 2304
23
24if SHELL
25
26config SHELL_STACK_SIZE
27	default 4096
28
29endif # SHELL
30
31endif # BT
32
33endif # BOARD_XG24_DK2601B
34