blob: 758a3a78b864976ee31c0b6e327eea0fe89cfc8b [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Kexec fast reboot tools"
2DESCRIPTION = "Kexec is a fast reboot feature that lets you reboot to a new Linux kernel"
3AUTHOR = "Eric Biederman"
4HOMEPAGE = "http://kernel.org/pub/linux/utils/kernel/kexec/"
5SECTION = "kernel/userland"
6LICENSE = "GPLv2"
7LIC_FILES_CHKSUM = "file://COPYING;md5=ea5bed2f60d357618ca161ad539f7c0a \
8 file://kexec/kexec.c;beginline=1;endline=20;md5=af10f6ae4a8715965e648aa687ad3e09"
9DEPENDS = "zlib xz"
10
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050011SRC_URI = "${KERNELORG_MIRROR}/linux/utils/kernel/kexec/kexec-tools-${PV}.tar.gz \
12 file://kdump \
13 file://kdump.conf \
14"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015
16PR = "r1"
17
18inherit autotools
19
20COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*|powerpc.*|mips.*)-(linux|freebsd.*)'
21
22INSANE_SKIP_${PN} = "arch"
23
24do_compile_prepend() {
25 # Remove the '*.d' file to make sure the recompile is OK
26 for dep in `find ${B} -type f -name '*.d'`; do
27 dep_no_d="`echo $dep | sed 's#.d$##'`"
28 # Remove file.d when there is a file.o
29 if [ -f "$dep_no_d.o" ]; then
30 rm -f $dep
31 fi
32 done
33}