7289930812785726f3fb4013d5ce1556cdca30b0
[openwrt/svn-archive/archive.git] / package / kexec-tools / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=kexec-tools
12 PKG_VERSION:=1.101
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://www.xmission.com/~ebiederm/files/kexec/
17 PKG_MD5SUM:=b4f7ffcc294d41a6a4c40d6e44b7734d
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/kexec-tools
22 SECTION:=utils
23 CATEGORY:=Utilities
24 DEPENDS:=@LINUX_2_6_X86||@LINUX_2_6_RDC +zlib
25 TITLE:=Kernel boots kernel
26 DESCRIPTION:=\
27 kexec is a set of systems call that allows you to load \\\
28 another kernel from the currently executing Linux kernel.
29 URL:=http://www.xmission.com/~ebiederm/files/kexec/README
30 endef
31
32 MAKE_FLAGS += \
33 DESTDIR="$(PKG_INSTALL_DIR)" \
34 EXTRA_CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" \
35 BUILD_CFLAGS="-Os" \
36 LIBS="$(TARGET_LDFLAGS) -lz" \
37 install
38
39 define Build/Compile
40 rm -rf $(PKG_INSTALL_DIR)
41 mkdir -p $(PKG_INSTALL_DIR)
42 $(call Build/Compile/Default,)
43 endef
44
45 define Package/kexec-tools/install
46 $(INSTALL_DIR) $(1)/usr/bin
47 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/kexec $(1)/usr/bin/
48 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/kdump $(1)/usr/bin/
49 endef
50
51 $(eval $(call BuildPackage,kexec-tools))