From a2ee9b7068f77e0285b9cb68399bbafc674777af Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 25 Apr 2017 14:03:11 +0200 Subject: busybox: nslookup_lede: fix compatibility with v1.25 The ":*" optstring syntax was only recently introduced with BusyBox v1.26, older versions need a corresponding hint in the "opt_complementary" variable to denote flag values that should be stored as llist entries. Add the required opt_complementary entry to fix random SIGBUS, SIGILL or SIGSEGV related crashes on BusyBox 1.25.x when attempting to use the "-q" flag of the "nslookup_lede" applet. Ref: https://forum.lede-project.org/t/nslookup-ipv6-in-lede-17-01-1 Signed-off-by: Jo-Philipp Wich --- package/utils/busybox/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package/utils/busybox/Makefile') diff --git a/package/utils/busybox/Makefile b/package/utils/busybox/Makefile index fdac78f..a593bc9 100644 --- a/package/utils/busybox/Makefile +++ b/package/utils/busybox/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=busybox -PKG_VERSION:=1.25.1 +PKG_VERSION:=1.25.2 PKG_RELEASE:=3 PKG_FLAGS:=essential -- cgit v1.1