summaryrefslogtreecommitdiff
path: root/sys-boot/linux/linux-4.10.13.ebuild
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2017-04-30 21:23:22 +0200
committerKarel Kočí <cynerd@email.cz>2017-04-30 21:23:22 +0200
commit36ff576e6de12221f63d3c390bb5944e6bf54699 (patch)
tree1c00123a887f7e1b55bec73eb5e270af93cfe87c /sys-boot/linux/linux-4.10.13.ebuild
parent3ddb3631ee3621c99a98d32e0e5039752353b8c2 (diff)
downloadgentoo-personal-overlay-36ff576e6de12221f63d3c390bb5944e6bf54699.tar.gz
gentoo-personal-overlay-36ff576e6de12221f63d3c390bb5944e6bf54699.tar.bz2
gentoo-personal-overlay-36ff576e6de12221f63d3c390bb5944e6bf54699.zip
Don't build linux firmware and move linux from sys-boot to sys-kernel
Diffstat (limited to 'sys-boot/linux/linux-4.10.13.ebuild')
-rw-r--r--sys-boot/linux/linux-4.10.13.ebuild42
1 files changed, 0 insertions, 42 deletions
diff --git a/sys-boot/linux/linux-4.10.13.ebuild b/sys-boot/linux/linux-4.10.13.ebuild
deleted file mode 100644
index 689d5a2..0000000
--- a/sys-boot/linux/linux-4.10.13.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Linux kernel"
-HOMEPAGE="http://kernel.org/"
-SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git/snapshot/linux-stable-${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/linux-stable-${PV}"
-
-LICENSE="GPLv2"
-SLOT="${PV}"
-KEYWORDS="amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-src_configure() {
- # Fix ARCH variable
- [ "$ARCH" = "amd64" ] && ARCH="x86"
-
- "${FILESDIR}"/config_prepare.sh || die "Configuration application failed"
-}
-
-src_install() {
- emake modules_install INSTALL_MOD_PATH="${D}"
-
- dodir /boot
- insinto /boot
- newins "${S}/arch/$ARCH/boot/bzImage" "bzlinux-${PV}"
-}
-
-src_postinst() {
- # Add label to syslinux config
- sed -i "/^## Dynamic labels ##$/a LABEL gentoo-${PV}\n\tMENU LABEL Gentoo${PV}\n\tLINUX ../bzlinux-${PV}\n\tAPPEND root=/dev/sda2 rootflags=subvol=@gentoo\n\tINITRD ../initramfs-gentoo\n" /boot/syslinux/syslinux.cnf
-}
-
-src_prerm() {
- # Remove label from syslinux config
- sed -i "/^LABEL gentoo-${PV}$/,/^$/d" /boot/syslinux/syslinux.cnf
-}