forked from immortalwrt/immortalwrt
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kexec-tools: make zlib support optional, but enabled by default
Signed-off-by: Felix Fietkau <[email protected]> SVN-Revision: 37071
- Loading branch information
Felix Fietkau
committed
Jun 28, 2013
1 parent
6232a43
commit ea5f9a7
Showing
2 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,12 +17,14 @@ PKG_MD5SUM:=b3ced2097ce3981abba38ceedc84f939 | |
|
||
PKG_FIXUP:=autoreconf | ||
|
||
PKG_CONFIG_DEPENDS := CONFIG_KEXEC_ZLIB | ||
|
||
include $(INCLUDE_DIR)/package.mk | ||
|
||
define Package/kexec-tools | ||
SECTION:=utils | ||
CATEGORY:=Utilities | ||
DEPENDS:=@armeb||@arm||@i386||@powerpc64||@mipsel||@mips +zlib | ||
DEPENDS:=@armeb||@arm||@i386||@powerpc64||@mipsel||@mips +KEXEC_ZLIB:zlib | ||
TITLE:=Kernel boots kernel | ||
URL:=http://kernel.org/pub/linux/kernel/people/horms/kexec-tools/ | ||
MAINTAINER:=Florian Fainelli <[email protected]> | ||
|
@@ -51,7 +53,8 @@ CONFIGURE_ARGS = \ | |
--bindir=/usr/bin \ | ||
--sbindir=/usr/sbin \ | ||
--libexecdir=/usr/lib \ | ||
--sysconfdir=/etc | ||
--sysconfdir=/etc \ | ||
$(if $(CONFIG_KEXEC_ZLIB),--with,--without)-zlib | ||
|
||
CONFIGURE_VARS += \ | ||
BUILD_CC="$(HOSTCC)" \ | ||
|