fix(sys-apps/kexec-tools) provide ebuild for binary version of kexec

This commit is contained in:
Greg Kroah-Hartman 2013-07-17 23:15:16 -07:00
parent fac0557f2e
commit d8d155bc1a
2 changed files with 21 additions and 1 deletions

View File

@ -93,7 +93,7 @@
=dev-libs/protobuf-c-0.15 ~amd64
# Everything needed for the boot engine
=sys-apps/kexec-tools-2.0.4-r1 ~amd64
>=sys-apps/kexec-tools-2.0.4-r1 ~amd64
>=sys-kernel/dracut-027-r3 ~amd64
=sys-apps/sysvinit-tools-2.88-r4 ~amd64

View File

@ -0,0 +1,20 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/kexec-tools/kexec-tools-2.0.4-r1.ebuild,v 1.1 2013/03/30 13:01:49 jlec Exp $
EAPI=2
inherit eutils flag-o-matic
DESCRIPTION="Load another kernel from the currently executing Linux kernel"
HOMEPAGE="http://kernel.org/pub/linux/utils/kernel/kexec/"
SRC_URI="http://beef.coreos.com/kexec"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
src_install() {
wget -O ${T}/kexec ${SRC_URI}
dosbin ${T}/kexec
}