2024-06-07 19:10:55 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Copyright (c) 2024 Intel Corporation.
|
|
|
|
|
|
|
|
mainmenu "LLEXT functionality test"
|
|
|
|
|
|
|
|
source "Kconfig.zephyr"
|
|
|
|
|
|
|
|
config HELLO_WORLD_MODE
|
|
|
|
tristate "Include the hello_world function"
|
2024-08-27 18:00:24 +02:00
|
|
|
default y
|
2024-06-07 19:10:55 +02:00
|
|
|
help
|
|
|
|
This enables building the hello_world function, implemented in
|
|
|
|
hello_world_ext.c, either as an llext module or as a built-in part of
|
|
|
|
Zephyr.
|
|
|
|
|
|
|
|
If you select 'm', the hello_world function will be built as an llext
|
|
|
|
"module". If you select 'y', the hello_world function will be directly
|
|
|
|
linked in the Zephyr image.
|
2024-08-27 18:00:24 +02:00
|
|
|
|
|
|
|
Note that additional architecture-specific configuration may be
|
|
|
|
required if you select 'm'. Please review this sample's documentation
|
|
|
|
and sample.yaml for more information.
|