make zlib, busybox and musl opt-out

This commit is contained in:
Trammell hudson 2018-02-13 17:37:28 -05:00
parent 10c1f56b0a
commit 78543fb7c7
No known key found for this signature in database
GPG Key ID: 687A5005935B1533
3 changed files with 7 additions and 3 deletions

View File

@ -1,4 +1,6 @@
modules-y += busybox # Busybox is always included, unless explicitly turned off
CONFIG_BUSYBOX ?= y
modules-$(CONFIG_BUSYBOX) += busybox
busybox_version := 1.28.0 busybox_version := 1.28.0
busybox_dir := busybox-$(busybox_version) busybox_dir := busybox-$(busybox_version)

View File

@ -1,4 +1,5 @@
modules-y += musl CONFIG_MUSL ?= y
modules-$(CONFIG_MUSL) += musl
musl_version := 1.1.15 musl_version := 1.1.15
musl_dir := musl-$(musl_version) musl_dir := musl-$(musl_version)

View File

@ -1,4 +1,5 @@
modules-y += zlib CONFIG_ZLIB ?= y
modules-$(CONFIG_ZLIB) += zlib
zlib_version := 1.2.11 zlib_version := 1.2.11
zlib_dir := zlib-$(zlib_version) zlib_dir := zlib-$(zlib_version)