diff --git a/Makefile b/Makefile index 2a45393..9a6c2a2 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,7 @@ include modules/qrencode include modules/kexec include modules/tpmtotp include modules/mbedtls +include modules/busybox all: $(modules) diff --git a/modules/busybox b/modules/busybox new file mode 100644 index 0000000..2c3f11b --- /dev/null +++ b/modules/busybox @@ -0,0 +1,11 @@ +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 oldconfig +busybox_output := busybox +