1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 04:52:59 +01:00

Merge pull request #18017 from aabadie/pr/pkg/lua-kconfig

pkg/lua: model in kconfig
This commit is contained in:
Kevin "Tristate Tom" Weiss 2022-05-03 11:46:17 +02:00 committed by GitHub
commit f4141c676e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1 @@
CONFIG_PACKAGE_LUA=y

View File

@ -0,0 +1 @@
CONFIG_PACKAGE_LUA=y

View File

@ -38,6 +38,7 @@ rsource "libfixmath/Kconfig"
rsource "libhydrogen/Kconfig"
rsource "littlefs2/Kconfig"
rsource "lora-serialization/Kconfig"
rsource "lua/Kconfig"
rsource "lv_drivers/Kconfig"
rsource "lvgl/Kconfig"
rsource "lz4/Kconfig"

24
pkg/lua/Kconfig Normal file
View File

@ -0,0 +1,24 @@
# Copyright (c) 2022 Inria
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
config PACKAGE_LUA
bool "LUA language package"
depends on TEST_KCONFIG
depends on HAS_ARCH_32BIT
depends on !HAS_ARCH_MIPS32R2
depends on !HAS_ARCH_RISCV
depends on !MODULE_PICOLIBC
select PACKAGE_TLSF
select MODULE_PRINTF_FLOAT
select MODULE_LUA-CONTRIB
select MODULE_LIBC_GETTIMEOFDAY if !CPU_NATIVE
config MODULE_LUA-CONTRIB
bool
depends on TEST_KCONFIG

View File

@ -0,0 +1,2 @@
CONFIG_PACKAGE_LUA=y
CONFIG_MODULE_STDIN=y