• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#
2# For a description of the syntax of this configuration file,
3# see the file kconfig-language.txt in the NuttX tools repository.
4#
5
6config JERRYSCRIPT
7	bool "Jerryscript"
8	default n
9	---help---
10		Enable Jerryscript ECMAScript 5.1 interpreter
11
12if JERRYSCRIPT
13
14config JERRYSCRIPT_PROGNAME
15	string "Program name"
16	default "jerry"
17	depends on BUILD_KERNEL
18	---help---
19		This is the name of the program that will be
20		 use when the NSH ELF program is installed.
21
22config JERRYSCRIPT_PRIORITY
23	int "Jerryscript task priority"
24	default 100
25
26config JERRYSCRIPT_STACKSIZE
27	int "Jerryscript stack size"
28	default 16384
29
30endif # JERRYSCRIPT
31