2006-11-25 00:25:11 +08:00
|
|
|
#
|
2009-01-08 09:49:11 +08:00
|
|
|
# Copyright (C) 2006-2008 OpenWrt.org
|
2006-11-25 00:25:11 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=kexec-tools
|
2009-01-21 03:46:45 +08:00
|
|
|
PKG_VERSION:=2.0.0
|
2006-11-25 00:25:11 +08:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
2008-04-13 07:20:31 +08:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2009-06-14 00:47:22 +08:00
|
|
|
PKG_SOURCE_URL:=@KERNEL/linux/kernel/people/horms/kexec-tools
|
2009-01-21 03:46:45 +08:00
|
|
|
PKG_MD5SUM:=d9f2ecd3c3307905f24130a25816e6cc
|
2006-11-25 00:25:11 +08:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/kexec-tools
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
2009-01-21 03:46:45 +08:00
|
|
|
DEPENDS:=@armeb||@i386||@TARGET_ps3||@mipsel||@mips +zlib
|
2006-11-25 00:25:11 +08:00
|
|
|
TITLE:=Kernel boots kernel
|
2008-04-13 07:20:31 +08:00
|
|
|
URL:=http://kernel.org/pub/linux/kernel/people/horms/kexec-tools/
|
|
|
|
MENU:=1
|
2006-11-25 00:25:11 +08:00
|
|
|
endef
|
|
|
|
|
2007-09-07 16:34:51 +08:00
|
|
|
define Package/kexec-tools/description
|
2008-04-13 07:20:31 +08:00
|
|
|
kexec is a set of systems call that allows you to load
|
2007-09-07 16:34:51 +08:00
|
|
|
another kernel from the currently executing Linux kernel.
|
|
|
|
endef
|
|
|
|
|
2008-04-13 07:20:31 +08:00
|
|
|
define Package/kexec-tools/config
|
|
|
|
source "$(SOURCE)/kexec-config.in"
|
|
|
|
endef
|
|
|
|
|
2009-07-07 11:00:04 +08:00
|
|
|
KEXEC_TARGET_NAME:=$(call qstrip,$(CONFIG_KEXEC_TOOLS_TARGET_NAME))-linux-$(TARGET_SUFFIX)
|
|
|
|
|
2008-04-13 07:20:31 +08:00
|
|
|
CONFIGURE_ARGS = \
|
2009-07-07 11:00:04 +08:00
|
|
|
--target=$(KEXEC_TARGET_NAME) \
|
|
|
|
--host=$(REAL_GNU_TARGET_NAME) \
|
2008-04-13 07:20:31 +08:00
|
|
|
--build=$(GNU_HOST_NAME) \
|
|
|
|
--program-prefix="" \
|
|
|
|
--program-suffix="" \
|
|
|
|
--prefix=/usr \
|
|
|
|
--exec-prefix=/usr \
|
|
|
|
--bindir=/usr/bin \
|
|
|
|
--sbindir=/usr/sbin \
|
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
|
2009-01-08 09:49:11 +08:00
|
|
|
CONFIGURE_VARS += \
|
2009-02-11 01:52:45 +08:00
|
|
|
BUILD_CC="$(HOSTCC)" \
|
|
|
|
TARGET_CC="$(TARGET_CC)" \
|
2007-02-28 21:28:18 +08:00
|
|
|
|
2006-11-25 00:25:11 +08:00
|
|
|
define Build/Compile
|
2008-04-13 07:20:31 +08:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) all
|
2006-11-25 00:25:11 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/kexec-tools/install
|
2008-04-13 07:20:31 +08:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
DESTDIR="$(1)" \
|
|
|
|
install
|
|
|
|
rm -rf $(1)/usr/man
|
2006-11-25 00:25:11 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,kexec-tools))
|