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
|
|
|
|
2023-07-19 22:48:03 +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)
|
2023-07-19 22:48:03 +00:00
|
|
|
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
|
2018-02-05 20:59:26 +00:00
|
|
|
busybox_config := config/busybox.config
|
2016-08-02 23:29:33 +00:00
|
|
|
busybox_output := busybox
|
2016-12-29 23:23:08 +00:00
|
|
|
busybox_target := \
|
2017-04-08 17:23:34 +00:00
|
|
|
$(CROSS_TOOLS) \
|
2017-03-21 18:29:07 +00:00
|
|
|
$(MAKE_JOBS) \
|
2018-05-02 20:13:23 +00:00
|
|
|
|
|
|
|
# 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)" \
|
2021-07-18 17:34:20 +00:00
|
|
|
CROSS_COMPILE="$(CROSS)" \
|
2018-05-02 20:13:23 +00:00
|
|
|
CONFIG_PREFIX="$(initrd_bin_dir)/.." \
|
|
|
|
install \
|
|
|
|
| tee -a $(build)/log/busybox.log \
|
|
|
|
$(VERBOSE_REDIRECT) \
|
|
|
|
)
|
2018-05-03 22:03:24 +00:00
|
|
|
@touch $< # ensure that our build file is still newer
|
2018-05-02 20:13:23 +00:00
|
|
|
|
2016-08-02 23:29:33 +00:00
|
|
|
|
2016-12-29 23:23:08 +00:00
|
|
|
busybox_depends := $(musl_dep)
|