2019-09-09 20:43:26 +00:00
|
|
|
{ stdenv, buildPackages, fetchurl, zlib, fetchpatch }:
|
2013-09-11 13:51:02 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "kexec-tools";
|
2019-08-04 15:28:22 +00:00
|
|
|
version = "2.0.20";
|
2012-03-16 21:17:13 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-11-09 16:56:57 +00:00
|
|
|
urls = [
|
2019-08-15 12:41:18 +00:00
|
|
|
"mirror://kernel/linux/utils/kernel/kexec/${pname}-${version}.tar.xz"
|
|
|
|
"http://horms.net/projects/kexec/kexec-tools/${pname}-${version}.tar.xz"
|
2015-11-09 16:56:57 +00:00
|
|
|
];
|
2019-08-04 15:28:22 +00:00
|
|
|
sha256 = "1j7qlhxk1rbv9jbj8wd6hb7zl8p2mp29ymrmccgmsi0m0dzhgn6s";
|
2012-03-16 21:17:13 +00:00
|
|
|
};
|
|
|
|
|
2018-11-10 19:49:36 +00:00
|
|
|
hardeningDisable = [ "format" "pic" "relro" "pie" ];
|
2015-12-23 01:59:47 +00:00
|
|
|
|
2020-05-12 18:52:29 +00:00
|
|
|
# Prevent kexec-tools from using uname to detect target, which is wrong in
|
|
|
|
# cases like compiling for aarch32 on aarch64
|
|
|
|
configurePlatforms = [ "build" "host" ];
|
2017-12-10 05:22:19 +00:00
|
|
|
configureFlags = [ "BUILD_CC=${buildPackages.stdenv.cc.targetPrefix}cc" ];
|
2019-04-26 22:04:29 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2013-09-11 13:51:02 +00:00
|
|
|
buildInputs = [ zlib ];
|
|
|
|
|
2019-09-22 07:38:09 +00:00
|
|
|
patches = [
|
2019-09-09 20:43:26 +00:00
|
|
|
# fix build on i686
|
|
|
|
# See: https://src.fedoraproject.org/rpms/kexec-tools/c/cb1e5463b5298b064e9b6c86ad6fe3505fec9298
|
|
|
|
(fetchpatch {
|
|
|
|
name = "kexec-tools-2.0.20-fix-broken-multiboot2-buliding-for-i386.patch";
|
|
|
|
url = "https://src.fedoraproject.org/rpms/kexec-tools/raw/cb1e5463b5298b064e9b6c86ad6fe3505fec9298/f/kexec-tools-2.0.20-fix-broken-multiboot2-buliding-for-i386.patch";
|
|
|
|
sha256 = "1kzmcsbhwfdgxlc5s88ir0n494phww1j16yk0z42x09qlkxxkg0l";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2015-04-19 01:29:22 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://horms.net/projects/kexec/kexec-tools";
|
2013-09-11 13:51:02 +00:00
|
|
|
description = "Tools related to the kexec Linux feature";
|
2015-11-17 20:29:29 +00:00
|
|
|
platforms = platforms.linux;
|
2019-05-03 01:30:32 +00:00
|
|
|
badPlatforms = [
|
|
|
|
"riscv64-linux" "riscv32-linux"
|
|
|
|
"sparc-linux" "sparc64-linux"
|
|
|
|
];
|
2018-08-29 22:38:33 +00:00
|
|
|
license = licenses.gpl2;
|
2012-03-16 21:17:13 +00:00
|
|
|
};
|
|
|
|
}
|