2 # Copyright (C) 2006-2008 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR
)/rules.mk
14 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.bz2
15 PKG_SOURCE_URL
:=@KERNEL
/linux
/kernel
/people
/horms
/kexec-tools
16 PKG_MD5SUM
:=67c1a396fdf67b984dad939a59a01571
20 include $(INCLUDE_DIR
)/package.mk
22 define Package
/kexec-tools
25 DEPENDS
:=@armeb||@i386||@powerpc64||@mipsel||@mips
+zlib
26 TITLE
:=Kernel boots kernel
27 URL
:=http
://kernel.org
/pub
/linux
/kernel
/people
/horms
/kexec-tools
/
31 define Package
/kexec-tools
/description
32 kexec is a set of systems call that allows you to load
33 another kernel from the currently executing Linux kernel.
36 define Package
/kexec-tools
/config
37 source
"$(SOURCE)/kexec-config.in"
40 KEXEC_TARGET_NAME
:=$(call qstrip
,$(CONFIG_KEXEC_TOOLS_TARGET_NAME
))-linux-
$(TARGET_SUFFIX
)
43 --target
=$(KEXEC_TARGET_NAME
) \
44 --host
=$(REAL_GNU_TARGET_NAME
) \
45 --build
=$(GNU_HOST_NAME
) \
52 --libexecdir
=/usr
/lib \
56 BUILD_CC
="$(HOSTCC)" \
57 TARGET_CC
="$(TARGET_CC)" \
60 $(MAKE
) -C
$(PKG_BUILD_DIR
) all
63 define Package
/kexec-tools
/install
64 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
70 $(eval
$(call BuildPackage
,kexec-tools
))