1# SPDX-License-Identifier: Apache-2.0
2# Copyright (c) 2024 Intel Corporation.
3
4mainmenu "LLEXT functionality test"
5
6source "Kconfig.zephyr"
7
8config HELLO_WORLD_MODE
9	tristate "Include the hello_world function"
10	default y
11	help
12	  This enables building the hello_world function, implemented in
13	  hello_world_ext.c, either as an llext module or as a built-in part of
14	  Zephyr.
15
16	  If you select 'm', the hello_world function will be built as an llext
17	  "module". If you select 'y', the hello_world function will be directly
18	  linked in the Zephyr image.
19
20	  Note that additional architecture-specific configuration may be
21	  required if you select 'm'. Please review this sample's documentation
22	  and sample.yaml for more information.
23