public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/kpatch/
Date: Tue,  6 Jun 2017 17:52:12 +0000 (UTC)	[thread overview]
Message-ID: <1496771522.37f7d400908f52fe6b8582e5767a033f9fe834c9.soap@gentoo> (raw)

commit:     37f7d400908f52fe6b8582e5767a033f9fe834c9
Author:     Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  4 00:51:08 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Jun  6 17:52:02 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37f7d400

sys-kernel/kpatch: init

Closes: https://github.com/gentoo/gentoo/pull/4844

 sys-kernel/kpatch/Manifest            |  1 +
 sys-kernel/kpatch/kpatch-0.4.0.ebuild | 69 +++++++++++++++++++++++++++++++++++
 sys-kernel/kpatch/metadata.xml        |  8 ++++
 3 files changed, 78 insertions(+)

diff --git a/sys-kernel/kpatch/Manifest b/sys-kernel/kpatch/Manifest
new file mode 100644
index 00000000000..b1ad18d32cc
--- /dev/null
+++ b/sys-kernel/kpatch/Manifest
@@ -0,0 +1 @@
+DIST kpatch-0.4.0.tar.gz 124433 SHA256 852b8bea7b4ed8712793d7a8e5692536fc68468063dffb873bd55801f78e994a SHA512 0bbb49a06d02e9eb026be458eb904cf50f50461a67f16835a306bb3a4a57ef88b86ecf6bca6dfc91b921ba87b4c8b9d532e2a77e987e7c71583b8cb53520a1d7 WHIRLPOOL adf5e76183153e02a70659f5d47cbc70ed65c3ed9f004f83764029a8caff12faa62b6f41eff71011024653f025b836b340f79dc084ba374fc21293af10a75e6b

diff --git a/sys-kernel/kpatch/kpatch-0.4.0.ebuild b/sys-kernel/kpatch/kpatch-0.4.0.ebuild
new file mode 100644
index 00000000000..a43c52353b3
--- /dev/null
+++ b/sys-kernel/kpatch/kpatch-0.4.0.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit linux-info linux-mod flag-o-matic
+
+if [[ ${PV} == *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/dynup/${PN}.git"
+else
+	SRC_URI="https://github.com/dynup/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="Dynamic kernel patching for Linux"
+HOMEPAGE="https://github.com/dynup/kpatch"
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="examples +modules test"
+
+RDEPEND="
+	app-crypt/pesign
+	dev-libs/openssl:0=
+	sys-libs/zlib
+	sys-apps/pciutils
+	sys-libs/ncurses:0
+	sys-apps/yum"
+DEPEND="
+	${RDEPEND}
+	dev-libs/elfutils
+	sys-devel/bison"
+
+pkg_pretend() {
+	if kernel_is gt 3 9 0; then
+		if ! linux_config_exists; then
+			eerror "Unable to check the currently running kernel for kpatch support"
+			eerror "Please be sure a .config file is available in the kernel src dir"
+			eerror "and ensure the kernel has been built."
+		else
+			# Fail to build if these kernel options are not enabled (see kpatch/kmod/core/Makefile)
+			CONFIG_CHECK="FUNCTION_TRACER HAVE_FENTRY MODULES SYSFS KALLSYMS_ALL"
+			ERROR_FUNCTION_TRACER="CONFIG_FUNCTION_TRACER must be enabled in the kernel's config file"
+			ERROR_HAVE_FENTRY="CONFIG_HAVE_FENTRY must be enabled in the kernel's config file"
+			ERROR_MODULES="CONFIG_MODULES must be enabled in the kernel's config file"
+			ERROR_SYSFS="CONFIG_SYSFS must be enabled in the kernel's config file"
+			ERROR_KALLSYMS_ALL="CONFIG_KALLSYMS_ALL must be enabled in the kernel's config file"
+		fi
+	else
+		eerror
+		eerror "kpatch is not available for Linux kernels below 4.0.0"
+		eerror
+		die "Upgrade the kernel sources before installing kpatch."
+	fi
+
+	check_extra_config
+}
+
+src_prepare() {
+	replace-flags '-O?' '-O1'
+	default
+}
+
+src_install() {
+	unset ARCH
+	emake DESTDIR="${D}" all install
+	einstalldocs
+}

diff --git a/sys-kernel/kpatch/metadata.xml b/sys-kernel/kpatch/metadata.xml
new file mode 100644
index 00000000000..b393adbecca
--- /dev/null
+++ b/sys-kernel/kpatch/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>alicef@gentoo.org</email>
+	</maintainer>
+	<longdescription lang="en">Dynamic kernel patching for the Linux kernel</longdescription>
+</pkgmetadata>


             reply	other threads:[~2017-06-06 17:52 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-06 17:52 David Seifert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2017-06-15  6:33 [gentoo-commits] repo/gentoo:master commit in: sys-kernel/kpatch/ Alice Ferrazzi
2017-08-03 20:06 Michał Górny
2017-10-24  0:08 Göktürk Yüksek
2018-05-22 14:40 Alice Ferrazzi
2018-10-23  0:16 Alice Ferrazzi
2019-06-02 18:45 Alice Ferrazzi
2019-06-02 18:47 Alice Ferrazzi
2019-07-30  1:13 Stefan Strogin
2019-07-30  1:13 Stefan Strogin
2020-08-08 12:18 Mikle Kolyada
2022-02-04 17:26 Alice Ferrazzi
2022-06-15 17:38 Alice Ferrazzi
2022-06-15 17:38 Alice Ferrazzi
2022-10-19  5:37 Alice Ferrazzi
2022-10-19  5:38 Alice Ferrazzi
2022-10-19  5:41 Alice Ferrazzi
2022-10-19  5:42 Alice Ferrazzi
2023-06-27  3:05 Alice Ferrazzi
2023-06-27  3:12 Alice Ferrazzi
2023-06-27  3:25 Sam James
2023-06-29 16:14 Mike Pagano
2023-06-30 11:49 Mike Pagano
2023-06-30 11:52 Mike Pagano
2023-06-30 11:53 Mike Pagano
2024-01-08 12:28 Sam James

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1496771522.37f7d400908f52fe6b8582e5767a033f9fe834c9.soap@gentoo \
    --to=soap@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox