-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathKconfig.env
39 lines (29 loc) · 1.29 KB
/
Kconfig.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#
# Copyright 2024 NXP
#
# SPDX-License-Identifier: BSD-3-Clause
#
# The choice Option only here no need for menu item
choice
prompt "Select RPMSG-Lite Environment Porting Layer"
default MCUX_COMPONENT_middleware.multicore.rpmsg-lite.bm if !(MCUX_COMPONENT_middleware.freertos-kernel)
default MCUX_COMPONENT_middleware.multicore.rpmsg-lite.freertos if MCUX_COMPONENT_middleware.freertos-kernel
config MCUX_COMPONENT_middleware.multicore.rpmsg-lite.bm
tristate "RPMSG-Lite Porting Layer for Baremetal"
config MCUX_COMPONENT_middleware.multicore.rpmsg-lite.freertos
tristate "RPMSG-Lite Porting Layer for FreeRTOS"
config MCUX_COMPONENT_middleware.multicore.rpmsg-lite.qnx
tristate "RPMSG-Lite Porting Layer for QNX"
config MCUX_COMPONENT_middleware.multicore.rpmsg-lite.threadx
tristate "RPMSG-Lite Porting Layer for ThreadX"
config MCUX_COMPONENT_middleware.multicore.rpmsg-lite.xos
tristate "RPMSG-Lite Porting Layer for XOS"
config MCUX_COMPONENT_middleware.multicore.rpmsg-lite.zephyr
tristate "RPMSG-Lite Porting Layer for Zephyr RTOS"
# config BACKEND_A
# tristate "Back-end A"
# depends on SUBSYSTEM_X
# config BACKEND_B
# tristate "Back-end B"
# depends on SUBSYSTEM_Y
endchoice