summaryrefslogtreecommitdiffstats
path: root/package/lua/Config.in
diff options
context:
space:
mode:
authorFrancois Perrad <fperrad@gmail.com>2012-12-03 06:12:14 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2012-12-05 10:58:01 -0800
commit635bebf559f4f76bc4fa49c3ccb468476a654151 (patch)
tree558da0b15df5ddbaa0930c53539d199d294eeb7c /package/lua/Config.in
parentd87847203f3b1b6af51515978563f0dee737b6fd (diff)
downloadbuildroot-novena-635bebf559f4f76bc4fa49c3ccb468476a654151.tar.gz
buildroot-novena-635bebf559f4f76bc4fa49c3ccb468476a654151.zip
lua: support linenoise
Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/lua/Config.in')
-rw-r--r--package/lua/Config.in17
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