mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-03 01:31:07 +00:00
move busybox init scripts from base-files into the busybox package and make them depend on busybox menuconfig options
SVN-Revision: 5620
This commit is contained in:
parent
392966798b
commit
bd8e5fb7db
@ -21,6 +21,11 @@ PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
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
|
define Package/busybox
|
||||||
SECTION:=base
|
SECTION:=base
|
||||||
CATEGORY:=Base system
|
CATEGORY:=Base system
|
||||||
@ -66,6 +71,10 @@ define Package/busybox/install
|
|||||||
IPKG_ARCH="$(ARCH)" \
|
IPKG_ARCH="$(ARCH)" \
|
||||||
PREFIX="$(1)" \
|
PREFIX="$(1)" \
|
||||||
install
|
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
|
-rm -rf $(1)/lib64
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user