aboutsummaryrefslogtreecommitdiffstats
path: root/package/busybox/Makefile
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-11-22 23:06:40 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-11-22 23:06:40 +0000
commit36dbcb9b377d3b3576ff081f229dd437e84a92bf (patch)
tree0920f5ee656c52738cc894455027d1e3487173ec /package/busybox/Makefile
parent627966575eb4c6340e2019ed2c5281cd5c8e2d6d (diff)
downloadmaster-187ad058-36dbcb9b377d3b3576ff081f229dd437e84a92bf.tar.gz
master-187ad058-36dbcb9b377d3b3576ff081f229dd437e84a92bf.tar.bz2
master-187ad058-36dbcb9b377d3b3576ff081f229dd437e84a92bf.zip
move busybox init scripts from base-files into the busybox package and make them depend on busybox menuconfig options
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5620 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox/Makefile')
-rw-r--r--package/busybox/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/package/busybox/Makefile b/package/busybox/Makefile
index cc34737264..0c1efc470a 100644
--- a/package/busybox/Makefile
+++ b/package/busybox/Makefile
@@ -21,6 +21,11 @@ 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
@@ -66,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