sys-kernel/linux-next - 9999 (gentoo)

Search

Notice: This package is in a virtual group: virtual/linux-sources
Equivalents: sys-kernel/asahi-sources, sys-kernel/gentoo-kernel, sys-kernel/gentoo-kernel-bin, sys-kernel/gentoo-sources, sys-kernel/git-sources, sys-kernel/linux-firmware, sys-kernel/mips-sources, sys-kernel/pf-sources, sys-kernel/raspberrypi-sources, sys-kernel/rt-sources, sys-kernel/vanilla-kernel, sys-kernel/vanilla-sources, sys-kernel/zen-sources

Install

Install this version:

emerge -a =sys-kernel/linux-next-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =sys-kernel/linux-next-9999

Or alternatively:

emerge --autounmask-write -a =sys-kernel/linux-next-9999

Package Information

Description:
Linux kernel and patches aimed at the next kernel merge window
Homepage:
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
License:
GPL-2+

Ebuild Details

Version EAPI Keywords Slot
9999 8 0
View Raw Ebuild
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit git-r3

EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git -> linux-next-${P}.git"
EGIT_CLONE_TYPE="shallow"

DESCRIPTION="Linux kernel and patches aimed at the next kernel merge window"
HOMEPAGE="https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git"

LICENSE="GPL-2+"
SLOT="0"
KEYWORDS=""

src_unpack() {
	git-r3_src_unpack
}

src_prepare() {
	eapply_user
}

src_compile() {
	:;
}

src_install() {
	dodir /usr/src/
	cp -R "${S}/" "${D}/usr/src/" || die "Install failed!"
}

Inherited Eclasses