From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jordan Yelloz Date: Sun, 24 Jul 2016 16:27:37 -0700 Subject: [Buildroot] [PATCH 2/4] swupdate: updated lua check for libconfig In-Reply-To: <20160724232739.14132-1-jordan@yelloz.me> References: <20160724232739.14132-1-jordan@yelloz.me> Message-ID: <20160724232739.14132-3-jordan@yelloz.me> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net Most probably this was missed in commit 65b2ae49feb310d3272a47c44cf3b406646b25c1 which removed pinning to Lua 5.2. Signed-off-by: Jordan Yelloz --- package/swupdate/Config.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/swupdate/Config.in b/package/swupdate/Config.in index 5f5e1e77b9d1..d7217af1c47f 100644 --- a/package/swupdate/Config.in +++ b/package/swupdate/Config.in @@ -3,7 +3,8 @@ config BR2_PACKAGE_SWUPDATE depends on BR2_TOOLCHAIN_HAS_THREADS depends on BR2_USE_MMU # fork() # swupdate requires a parser and uses libconfig as default - select BR2_PACKAGE_LIBCONFIG if !BR2_PACKAGE_JSON_C && !BR2_PACKAGE_LUA_5_2 + select BR2_PACKAGE_LIBCONFIG if !BR2_PACKAGE_JSON_C && \ + !BR2_PACKAGE_HAS_LUAINTERPRETER help swupdate provides a reliable way to update the software on an embedded system. -- 2.9.2