diff options
author | Rosy Song <rosysong@rosinson.com> | 2018-09-22 21:15:40 +0800 |
---|---|---|
committer | Hans Dedecker <dedeckeh@gmail.com> | 2018-09-23 17:45:08 +0200 |
commit | 9f0cb135dd4078f4df89978abb0f96326133da2c (patch) | |
tree | e28f7b6c2382510109d492121f56535300298143 /package | |
parent | efffba34097ff75d12365fb863621d893f974623 (diff) | |
download | upstream-9f0cb135dd4078f4df89978abb0f96326133da2c.tar.gz upstream-9f0cb135dd4078f4df89978abb0f96326133da2c.tar.bz2 upstream-9f0cb135dd4078f4df89978abb0f96326133da2c.zip |
busybox: fix dependency for IPV6
Signed-off-by: Rosy Song <rosysong@rosinson.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/utils/busybox/Makefile | 2 | ||||
-rw-r--r-- | package/utils/busybox/config/networking/Config.in | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/package/utils/busybox/Makefile b/package/utils/busybox/Makefile index 129aec19d6..6a761b4598 100644 --- a/package/utils/busybox/Makefile +++ b/package/utils/busybox/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=busybox PKG_VERSION:=1.29.3 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_FLAGS:=essential PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 diff --git a/package/utils/busybox/config/networking/Config.in b/package/utils/busybox/config/networking/Config.in index 2d2a1c4a9e..2071fd015e 100644 --- a/package/utils/busybox/config/networking/Config.in +++ b/package/utils/busybox/config/networking/Config.in @@ -9,6 +9,7 @@ menu "Networking Utilities" config BUSYBOX_CONFIG_FEATURE_IPV6 bool "Enable IPv6 support" default BUSYBOX_DEFAULT_FEATURE_IPV6 + depends on IPV6 help Enable IPv6 support in busybox. This adds IPv6 support in the networking applets. |