heads/modules/busybox

21 lines
627 B
Plaintext
Raw Normal View History

2018-02-13 17:37:28 -05:00
# Busybox is always included, unless explicitly turned off
CONFIG_BUSYBOX ?= y
modules-$(CONFIG_BUSYBOX) += busybox
2016-08-02 19:29:33 -04:00
2018-02-09 12:15:35 -05:00
busybox_version := 1.28.0
2016-08-02 19:29:33 -04:00
busybox_dir := busybox-$(busybox_version)
busybox_tar := busybox-$(busybox_version).tar.bz2
busybox_url := https://busybox.net/downloads/$(busybox_tar)
2018-02-09 12:15:35 -05:00
busybox_hash := 604553b7dbd59ded9e3ad7c6af49ed2cff599adf3e54d9463e5e0027b362019c
2016-08-02 19:29:33 -04:00
2017-01-28 12:16:34 -05:00
busybox_configure := $(MAKE) CC="$(heads_cc)" oldconfig
busybox_config := config/busybox.config
2016-08-02 19:29:33 -04:00
busybox_output := busybox
busybox_target := \
$(CROSS_TOOLS) \
CONFIG_PREFIX="$(initrd_dir)" \
2017-03-21 14:29:07 -04:00
$(MAKE_JOBS) \
install
2016-08-02 19:29:33 -04:00
busybox_depends := $(musl_dep)