forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sys-kernel/gentoo-sources: Linux patch 4.4.0. Support for namespace u…
…ser.pax.* on tmpfs. Enable link security restrictions by default. ACPI: Disable Windows 8 compatibility for some Lenovo ThinkPads.Ensure that /dev/root doesn't appear in /proc/mounts when bootint without an initramfs. Bootsplash ported by Marco. (Bug #539616). Add Gentoo Linux support config settings and defaults.Kernel patch enables gcc < v4.9 optimizations for additional CPUs. Kernel patch enables gcc >= v4.9 optimizations for additional CPUs. Package-Manager: portage-2.2.26
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI="5" | ||
ETYPE="sources" | ||
K_WANT_GENPATCHES="base extras experimental" | ||
K_GENPATCHES_VER="1" | ||
K_DEBLOB_AVAILABLE="0" | ||
K_KDBUS_AVAILABLE="0" | ||
|
||
inherit kernel-2 | ||
detect_version | ||
detect_arch | ||
|
||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 -hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" | ||
HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" | ||
IUSE="experimental" | ||
|
||
DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" | ||
SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" | ||
|
||
pkg_postinst() { | ||
kernel-2_pkg_postinst | ||
einfo "For more info on this patchset, and how to report problems, see:" | ||
einfo "${HOMEPAGE}" | ||
} | ||
|
||
pkg_postrm() { | ||
kernel-2_pkg_postrm | ||
} |