busybox: restore init scripts
Since the removal of the busybox menuconfig entries, the init scripts for cron, telnet and ntp are not packaged anymore. Unconditionally ship them from now on. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 39123
This commit is contained in:
parent
de5ebc19c0
commit
7a24db90aa
1 changed files with 3 additions and 8 deletions
|
@ -31,11 +31,6 @@ else
|
||||||
BB_MAKE_VERBOSE :=
|
BB_MAKE_VERBOSE :=
|
||||||
endif
|
endif
|
||||||
|
|
||||||
init-y :=
|
|
||||||
init-$(CONFIG_BUSYBOX_CONFIG_CROND) += cron
|
|
||||||
init-$(CONFIG_BUSYBOX_CONFIG_NTPD) += sysntpd
|
|
||||||
init-$(CONFIG_BUSYBOX_CONFIG_TELNETD) += telnet
|
|
||||||
|
|
||||||
define Package/busybox
|
define Package/busybox
|
||||||
SECTION:=base
|
SECTION:=base
|
||||||
CATEGORY:=Base system
|
CATEGORY:=Base system
|
||||||
|
@ -113,9 +108,9 @@ endef
|
||||||
define Package/busybox/install
|
define Package/busybox/install
|
||||||
$(INSTALL_DIR) $(1)/etc/init.d
|
$(INSTALL_DIR) $(1)/etc/init.d
|
||||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||||
for tmp in $(init-y); do \
|
$(INSTALL_BIN) ./files/cron $(1)/etc/init.d/cron
|
||||||
$(INSTALL_BIN) ./files/$$$$tmp $(1)/etc/init.d/$$$$tmp; \
|
$(INSTALL_BIN) ./files/telnet $(1)/etc/init.d/telnet
|
||||||
done
|
$(INSTALL_BIN) ./files/sysntpd $(1)/etc/init.d/sysntpd
|
||||||
-rm -rf $(1)/lib64
|
-rm -rf $(1)/lib64
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue