mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-01-04 14:56:16 +01:00
53 lines
1.8 KiB
Bash
53 lines
1.8 KiB
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="6"
|
|
ETYPE="sources"
|
|
K_WANT_GENPATCHES="base extras experimental"
|
|
K_GENPATCHES_VER="2"
|
|
|
|
inherit kernel-2
|
|
detect_version
|
|
detect_arch
|
|
|
|
#nvidia doesn't have a release for x86 that supports >4.17 yet, so now we give up on them
|
|
KEYWORDS="amd64 x86"
|
|
HOMEPAGE="https://github.com/pentoo/pentoo-livecd/tree/master/kernel/4.13.8"
|
|
IUSE="experimental +hardened pax_kernel"
|
|
|
|
DESCRIPTION="Pentoo kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})"
|
|
PENPATCHES_VER="1"
|
|
PENPATCHES="penpatches-5.2.1-${PENPATCHES_VER}.tar.xz"
|
|
PENPATCHES_URI="http://dev.pentoo.ch/~zero/distfiles/${PENPATCHES}"
|
|
HARDENED_URI="http://dev.pentoo.ch/~blshkv/distfiles/v2-kconfig-add-hardened-defconfig-helpers.patch"
|
|
SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI} ${PENPATCHES_URI}
|
|
hardened? ( ${HARDENED_URI} )"
|
|
|
|
UNIPATCH_LIST="${DISTDIR}/${PENPATCHES}"
|
|
|
|
src_prepare() {
|
|
#https://patchwork.kernel.org/patch/10593391/
|
|
use hardened && eapply "${DISTDIR}/v2-kconfig-add-hardened-defconfig-helpers.patch"
|
|
eapply_user
|
|
}
|
|
|
|
pkg_postinst() {
|
|
kernel-2_pkg_postinst
|
|
einfo "For more info on this patchset, and how to report problems, see:"
|
|
einfo "${HOMEPAGE}"
|
|
|
|
ewarn "It may be desired to download the official pentoo kernel config from here:"
|
|
if use amd64; then
|
|
ewarn "https://raw.githubusercontent.com/pentoo/pentoo-livecd/master/livecd/amd64/kernel/config-${PV}"
|
|
fi
|
|
if use x86; then
|
|
ewarn "https://raw.githubusercontent.com/pentoo/pentoo-livecd/master/livecd/x86/kernel/config-${PV}"
|
|
fi
|
|
|
|
use pax_kernel && ewarn "pax_kernel is no longer available, you MUST ensure the use flag is no longer set"
|
|
use hardened && ewarn "Please run \"make help\" to see additional hardended options"
|
|
}
|
|
|
|
pkg_postrm() {
|
|
kernel-2_pkg_postrm
|
|
}
|