heads/modules/busybox

39 lines
1.1 KiB
Makefile
Raw Normal View History

2018-02-13 22:37:28 +00:00
# Busybox is always included, unless explicitly turned off
CONFIG_BUSYBOX ?= y
modules-$(CONFIG_BUSYBOX) += busybox
2016-08-02 23:29:33 +00:00
busybox_version := 1.36.1
2016-08-02 23:29:33 +00:00
busybox_dir := busybox-$(busybox_version)
busybox_tar := busybox-$(busybox_version).tar.bz2
busybox_url := https://busybox.net/downloads/$(busybox_tar)
busybox_hash := b8cc24c9574d809e7279c3be349795c5d5ceb6fdf19ca709f80cde50e47de314
2016-08-02 23:29:33 +00:00
2017-01-28 17:16:34 +00:00
busybox_configure := $(MAKE) CC="$(heads_cc)" oldconfig
busybox_config := config/busybox.config
2016-08-02 23:29:33 +00:00
busybox_output := busybox
busybox_target := \
$(CROSS_TOOLS) \
2017-03-21 18:29:07 +00:00
$(MAKE_JOBS) \
# Install symlinks when the busybox program is installed
ifeq "$(CONFIG_BUSYBOX)" "y"
initrd_bins += $(initrd_bin_dir)/busybox
endif
$(initrd_tmp_dir)/bin/busybox: $(build)/$(busybox_dir)/.build
$(call do,SYMLINK,bin/busybox,\
$(MAKE) \
-C $(build)/$(busybox_dir) \
CC="$(heads_cc)" \
CROSS_COMPILE="$(CROSS)" \
CONFIG_PREFIX="$(initrd_bin_dir)/.." \
install \
| tee -a $(build)/log/busybox.log \
$(VERBOSE_REDIRECT) \
)
@touch $< # ensure that our build file is still newer
2016-08-02 23:29:33 +00:00
busybox_depends := $(musl_dep)