2 # Copyright (C) 2006 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
9 include $(TOPDIR
)/rules.mk
15 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.gz
16 PKG_SOURCE_URL
:=http
://www.xmission.com
/~ebiederm
/files
/kexec
/
17 PKG_MD5SUM
:=b4f7ffcc294d41a6a4c40d6e44b7734d
19 include $(INCLUDE_DIR
)/package.mk
21 define Package
/kexec-tools
25 TITLE
:=Kernel boots kernel
26 URL
:=http
://www.xmission.com
/~ebiederm
/files
/kexec
/README
29 define Package
/kexec-tools
/description
30 kexec is a set of systems call that allows you to load
31 another kernel from the currently executing Linux kernel.
35 DESTDIR
="$(PKG_INSTALL_DIR)" \
36 EXTRA_CFLAGS
="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" \
38 LIBS
="$(TARGET_LDFLAGS) -lz" \
42 rm -rf
$(PKG_INSTALL_DIR
)
43 mkdir
-p
$(PKG_INSTALL_DIR
)
44 $(call Build
/Compile
/Default
,)
47 define Package
/kexec-tools
/install
48 $(INSTALL_DIR
) $(1)/usr
/bin
49 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/sbin
/kexec
$(1)/usr
/bin
/
50 $(INSTALL_BIN
) $(PKG_INSTALL_DIR
)/usr
/sbin
/kdump
$(1)/usr
/bin
/
51 $(INSTALL_BIN
) .
/files
/kexec.sh
$(1)/usr
/bin
/kexec.mtd
54 $(eval
$(call BuildPackage
,kexec-tools
))