2005-12-13 06:01:49 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# sysvinit
|
|
|
|
#
|
|
|
|
#############################################################
|
2010-12-12 22:53:51 +01:00
|
|
|
SYSVINIT_VERSION = 2.88
|
|
|
|
SYSVINIT_SOURCE = sysvinit_$(SYSVINIT_VERSION)dsf.orig.tar.gz
|
2011-01-26 11:16:46 +01:00
|
|
|
SYSVINIT_PATCH = sysvinit_$(SYSVINIT_VERSION)dsf-13.1.diff.gz
|
2010-12-12 22:53:51 +01:00
|
|
|
SYSVINIT_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/s/sysvinit
|
|
|
|
|
|
|
|
# Override Busybox implementations if Busybox is enabled.
|
|
|
|
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
2011-07-12 07:04:39 +02:00
|
|
|
SYSVINIT_DEPENDENCIES = busybox
|
2010-12-12 22:53:51 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
define SYSVINIT_DEBIAN_PATCHES
|
|
|
|
if [ -d $(@D)/debian/patches ]; then \
|
2011-08-31 23:35:04 +02:00
|
|
|
support/scripts/apply-patches.sh $(@D) $(@D)/debian/patches \*.patch; \
|
2010-12-12 22:53:51 +01:00
|
|
|
fi
|
|
|
|
endef
|
|
|
|
|
|
|
|
SYSVINIT_POST_PATCH_HOOKS = SYSVINIT_DEBIAN_PATCHES
|
|
|
|
|
|
|
|
define SYSVINIT_BUILD_CMDS
|
2010-08-22 08:28:02 +02:00
|
|
|
# Force sysvinit to link against libcrypt as it otherwise
|
|
|
|
# use an incorrect test to see if it's available
|
2010-12-12 22:53:51 +01:00
|
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) LCRYPT="-lcrypt" -C $(@D)/src
|
|
|
|
endef
|
2005-12-13 06:01:49 +01:00
|
|
|
|
2010-12-12 22:53:51 +01:00
|
|
|
define SYSVINIT_INSTALL_TARGET_CMDS
|
2007-08-22 11:56:41 +02:00
|
|
|
for x in halt init shutdown; do \
|
2010-12-12 22:53:51 +01:00
|
|
|
install -D -m 0755 $(@D)/src/$$x $(TARGET_DIR)/sbin/$$x || exit 1; \
|
2005-12-13 06:01:49 +01:00
|
|
|
done
|
2010-12-12 22:53:51 +01:00
|
|
|
# Override Busybox's inittab with an inittab compatible with
|
|
|
|
# sysvinit
|
|
|
|
install -D -m 0644 package/sysvinit/inittab $(TARGET_DIR)/etc/inittab
|
|
|
|
endef
|
2005-12-13 06:01:49 +01:00
|
|
|
|
2010-12-12 22:53:51 +01:00
|
|
|
define SYSVINIT_UNINSTALL_TARGET_CMDS
|
2007-08-22 11:56:41 +02:00
|
|
|
for x in halt init shutdown; do \
|
|
|
|
rm -f $(TARGET_DIR)/sbin/$$x || exit 1; \
|
2005-12-13 06:01:49 +01:00
|
|
|
done
|
2010-12-12 22:53:51 +01:00
|
|
|
endef
|
2005-12-13 06:01:49 +01:00
|
|
|
|
2010-12-12 22:53:51 +01:00
|
|
|
define SYSVINIT_CLEAN_CMDS
|
|
|
|
$(MAKE) -C $(@D) clean
|
|
|
|
endef
|
|
|
|
|
2011-09-29 21:57:42 +02:00
|
|
|
$(eval $(call GENTARGETS))
|