1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:12:57 +01:00

Merge pull request #18012 from aabadie/pr/pkg/jerrycript_kconfig

pkg/jerryscript: model in Kconfig
This commit is contained in:
Alexandre Abadie 2022-04-27 19:10:20 +02:00 committed by GitHub
commit 9538b880e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 0 deletions

View File

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

View File

@ -29,6 +29,7 @@ rsource "gecko_sdk/Kconfig"
rsource "gemmlowp/Kconfig"
rsource "hacl/Kconfig"
rsource "heatshrink/Kconfig"
rsource "jerryscript/Kconfig"
rsource "jsmn/Kconfig"
rsource "libb2/Kconfig"
rsource "libcose/Kconfig"

21
pkg/jerryscript/Kconfig Normal file
View File

@ -0,0 +1,21 @@
# 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_JERRYSCRIPT
bool "Ultra-lightweight Javascript interpreter"
depends on TEST_KCONFIG
depends on HAS_ARCH_32BIT
depends on !HAS_ARCH_MIPS32R2
select MODULE_JERRYSCRIPT-PORT-DEFAULT
select MODULE_JERRYSCRIPT-EXT
config MODULE_JERRYSCRIPT-PORT-DEFAULT
bool
config MODULE_JERRYSCRIPT-EXT
bool