X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/34dbf787c3fa13541abc9aadcf53c23016895382..2fa68be58d30e6c73e6cfc3ccb5bb97396e5fba1:/package/busybox/Makefile?ds=sidebyside diff --git a/package/busybox/Makefile b/package/busybox/Makefile index f56d2462d..0c1efc470 100644 --- a/package/busybox/Makefile +++ b/package/busybox/Makefile @@ -21,18 +21,24 @@ PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) include $(INCLUDE_DIR)/package.mk +init-y := +init-$(CONFIG_BUSYBOX_CONFIG_HTTPD) += httpd +init-$(CONFIG_BUSYBOX_CONFIG_CROND) += cron +init-$(CONFIG_BUSYBOX_CONFIG_TELNETD) += telnet + define Package/busybox SECTION:=base CATEGORY:=Base system - DEFAULT:=y TITLE:=Core utilities for embedded Linux - DESCRIPTION:=\ - The Swiss Army Knife of embedded Linux. \\\ - It slices, it dices, it makes Julian Fries. URL:=http://busybox.net/ MENU:=1 endef +define Package/busybox/description +The Swiss Army Knife of embedded Linux. + It slices, it dices, it makes Julian Fries. +endef + define Package/busybox/config menu "Configuration" depends on PACKAGE_busybox @@ -65,6 +71,10 @@ define Package/busybox/install IPKG_ARCH="$(ARCH)" \ PREFIX="$(1)" \ install + mkdir -p $(1)/etc/init.d + for tmp in $(init-y); do \ + $(INSTALL_BIN) ./files/$$$$tmp $(1)/etc/init.d/$$$$tmp; \ + done -rm -rf $(1)/lib64 endef