e8fb454db6
[Thomas: - remove the patch from Matthew Weber that did a lot of changes that were not needed: the CFLAGS would not get overridden by Buildroot ones if the Buildroot TARGET_CONFIGURE_OPTS is passed on the left hand-side of make, and the SULOGINLIBS hack needs to be replaced by a proper handling of the libcrypt detection. - added a patch that changes the libcrypt detection logic to accept a SYSROOT variable. Instead of search for /usr/lib/libcrypt.a, it search for $(SYSROOT)/usr/lib/libcrypt.a. This avoids the need for overriding SULOGINLIBS. - don't modify TARGET_CONFIGURE_OPTS in sysvinit.mk, this is completely forbidden and broken. - don't pass ROOT= since we don't use 'make install' anyway.] Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> Reviewed-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
51 lines
1.6 KiB
Makefile
51 lines
1.6 KiB
Makefile
################################################################################
|
|
#
|
|
# sysvinit
|
|
#
|
|
################################################################################
|
|
|
|
SYSVINIT_VERSION = 2.88
|
|
SYSVINIT_SOURCE = sysvinit_$(SYSVINIT_VERSION)dsf.orig.tar.gz
|
|
SYSVINIT_PATCH = sysvinit_$(SYSVINIT_VERSION)dsf-13.1+squeeze1.diff.gz
|
|
SYSVINIT_SITE = http://snapshot.debian.org/archive/debian/20141023T043132Z/pool/main/s/sysvinit
|
|
SYSVINIT_LICENSE = GPLv2+
|
|
SYSVINIT_LICENSE_FILES = COPYING
|
|
|
|
SYSVINIT_MAKE_OPTS = SYSROOT=$(STAGING_DIR)
|
|
|
|
# Override BusyBox implementations if BusyBox is enabled.
|
|
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
|
SYSVINIT_DEPENDENCIES = busybox
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSELINUX),y)
|
|
SYSVINIT_DEPENDENCIES += libselinux
|
|
SYSVINIT_MAKE_OPTS += WITH_SELINUX="yes"
|
|
endif
|
|
|
|
define SYSVINIT_DEBIAN_PATCHES
|
|
if [ -d $(@D)/debian/patches ]; then \
|
|
$(APPLY_PATCHES) $(@D) $(@D)/debian/patches \*.patch; \
|
|
fi
|
|
endef
|
|
|
|
SYSVINIT_POST_PATCH_HOOKS = SYSVINIT_DEBIAN_PATCHES
|
|
|
|
define SYSVINIT_BUILD_CMDS
|
|
# Force sysvinit to link against libcrypt as it otherwise
|
|
# use an incorrect test to see if it's available
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) $(SYSVINIT_MAKE_OPTS) -C $(@D)/src
|
|
endef
|
|
|
|
define SYSVINIT_INSTALL_TARGET_CMDS
|
|
for x in halt init shutdown killall5; do \
|
|
$(INSTALL) -D -m 0755 $(@D)/src/$$x $(TARGET_DIR)/sbin/$$x || exit 1; \
|
|
done
|
|
$(INSTALL) -D -m 0644 package/sysvinit/inittab $(TARGET_DIR)/etc/inittab
|
|
ln -sf /sbin/halt $(TARGET_DIR)/sbin/reboot
|
|
ln -sf /sbin/halt $(TARGET_DIR)/sbin/poweroff
|
|
ln -sf killall5 $(TARGET_DIR)/sbin/pidof
|
|
endef
|
|
|
|
$(eval $(generic-package))
|