From 6f447d09dfa4c4ee2321f327c5b62e79db3f9173 Mon Sep 17 00:00:00 2001 From: nbd Date: Wed, 22 Nov 2006 23:06:40 +0000 Subject: [PATCH] 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 --- package/busybox/Makefile | 9 +++++++++ .../default/etc/init.d => busybox/files}/cron | 0 .../default/etc/init.d => busybox/files}/httpd | 0 .../default/etc/init.d => busybox/files}/telnet | 0 4 files changed, 9 insertions(+) rename package/{base-files/default/etc/init.d => busybox/files}/cron (100%) rename package/{base-files/default/etc/init.d => busybox/files}/httpd (100%) rename package/{base-files/default/etc/init.d => busybox/files}/telnet (100%) diff --git a/package/busybox/Makefile b/package/busybox/Makefile index cc3473726..0c1efc470 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 diff --git a/package/base-files/default/etc/init.d/cron b/package/busybox/files/cron similarity index 100% rename from package/base-files/default/etc/init.d/cron rename to package/busybox/files/cron diff --git a/package/base-files/default/etc/init.d/httpd b/package/busybox/files/httpd similarity index 100% rename from package/base-files/default/etc/init.d/httpd rename to package/busybox/files/httpd diff --git a/package/base-files/default/etc/init.d/telnet b/package/busybox/files/telnet similarity index 100% rename from package/base-files/default/etc/init.d/telnet rename to package/busybox/files/telnet -- 2.35.1