mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 04:57:55 +00:00
19 lines
522 B
Plaintext
19 lines
522 B
Plaintext
modules += busybox
|
|
|
|
busybox_version := 1.25.0
|
|
busybox_dir := busybox-$(busybox_version)
|
|
busybox_tar := busybox-$(busybox_version).tar.bz2
|
|
busybox_url := https://busybox.net/downloads/$(busybox_tar)
|
|
busybox_hash := 5a0fe06885ee1b805fb459ab6aaa023fe4f2eccee4fb8c0fd9a6c17c0daca2fc
|
|
|
|
busybox_configure := $(MAKE) CC="$(heads_cc)" oldconfig
|
|
busybox_config := busybox.config
|
|
busybox_output := busybox
|
|
busybox_target := \
|
|
CC="$(heads_cc)" \
|
|
CONFIG_PREFIX="$(INSTALL)" \
|
|
$(MAKE_JOBS) \
|
|
install
|
|
|
|
busybox_depends := $(musl_dep)
|