mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 21:17:55 +00:00
make zlib, busybox and musl opt-out
This commit is contained in:
parent
10c1f56b0a
commit
78543fb7c7
@ -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_dir := busybox-$(busybox_version)
|
||||
|
@ -1,4 +1,5 @@
|
||||
modules-y += musl
|
||||
CONFIG_MUSL ?= y
|
||||
modules-$(CONFIG_MUSL) += musl
|
||||
|
||||
musl_version := 1.1.15
|
||||
musl_dir := musl-$(musl_version)
|
||||
|
@ -1,4 +1,5 @@
|
||||
modules-y += zlib
|
||||
CONFIG_ZLIB ?= y
|
||||
modules-$(CONFIG_ZLIB) += zlib
|
||||
|
||||
zlib_version := 1.2.11
|
||||
zlib_dir := zlib-$(zlib_version)
|
||||
|
Loading…
Reference in New Issue
Block a user