diff options
Diffstat (limited to 'package/lua/Config.in')
-rw-r--r-- | package/lua/Config.in | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/package/lua/Config.in b/package/lua/Config.in index 8233e2a69..416673026 100644 --- a/package/lua/Config.in +++ b/package/lua/Config.in @@ -7,6 +7,15 @@ config BR2_PACKAGE_LUA if BR2_PACKAGE_LUA +choice + prompt "Lua Interpreter command-line editing" + default BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE + +config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE + bool "none" + help + None. + config BR2_PACKAGE_LUA_INTERPRETER_READLINE bool "readline support" select BR2_PACKAGE_READLINE @@ -14,4 +23,12 @@ config BR2_PACKAGE_LUA_INTERPRETER_READLINE help Enables command-line editing in the lua interpreter. +config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE + bool "linenoise support" + select BR2_PACKAGE_LINENOISE + help + Enables command-line editing in the lua interpreter. + +endchoice + endif |