mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-18 20:47:55 +00:00
19 lines
532 B
Plaintext
19 lines
532 B
Plaintext
modules-y += busybox
|
|
|
|
busybox_version := 1.26.2
|
|
busybox_dir := busybox-$(busybox_version)
|
|
busybox_tar := busybox-$(busybox_version).tar.bz2
|
|
busybox_url := https://busybox.net/downloads/$(busybox_tar)
|
|
busybox_hash := da3e44913fc1a9c9b7c5337ea5292da518683cbff32be630777f565d6036af16
|
|
|
|
busybox_configure := $(MAKE) CC="$(heads_cc)" oldconfig
|
|
busybox_config := config/busybox.config
|
|
busybox_output := busybox
|
|
busybox_target := \
|
|
$(CROSS_TOOLS) \
|
|
CONFIG_PREFIX="$(initrd_dir)" \
|
|
$(MAKE_JOBS) \
|
|
install
|
|
|
|
busybox_depends := $(musl_dep)
|