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