300f9c9c9d
Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
24 lines
572 B
Makefile
24 lines
572 B
Makefile
#############################################################
|
|
#
|
|
# kexec
|
|
#
|
|
#############################################################
|
|
KEXEC_VERSION = 2.0.2
|
|
KEXEC_SOURCE = kexec-tools-$(KEXEC_VERSION).tar.bz2
|
|
KEXEC_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/kernel/kexec
|
|
|
|
ifeq ($(BR2_PACKAGE_KEXEC_ZLIB),y)
|
|
KEXEC_CONF_OPT += --with-zlib
|
|
KEXEC_DEPENDENCIES = zlib
|
|
else
|
|
KEXEC_CONF_OPT += --without-zlib
|
|
endif
|
|
|
|
define KEXEC_REMOVE_LIB_TOOLS
|
|
rm -rf $(TARGET_DIR)/usr/lib/kexec-tools
|
|
endef
|
|
|
|
KEXEC_POST_INSTALL_TARGET_HOOKS += KEXEC_REMOVE_LIB_TOOLS
|
|
|
|
$(eval $(call AUTOTARGETS))
|