summaryrefslogtreecommitdiff
path: root/sys-boot/linux/linux-4.10.13.ebuild
blob: 19b339a9cd32269899593fb3868a22d07d4d0403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# 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="bluetooth
desktop
ikconfig
kvm
network
power
sd_storage"

DEPEND=""
RDEPEND="${DEPEND}"

src_configure() {
	[ "$ARCH" = "amd64" ] && ARCH="x86"

	emake mrproper
	# Generate default configuration
	emake defconfig

	# Prepare list of arguments
	ARGS=""
	for U in $IUSE; do
		ARGS="$ARGS $(usev $U)"
	done

	# Apply configuration
	(
		cd "${S}"
		"${FILESDIR}"/config_prepare.sh $ARGS
	) || fail

	# Process changes
	emake olddefconfig 2>/dev/null

	# Check changes
	eerror "$("${FILESDIR}"/config_miss.sh $ARGS)" || fail
}

src_install() {
	emake modules_install INSTALL_MOD_PATH="${D}"
	rm "${D}/lib64/modules/${PV}/source"
	rm "${D}/lib64/modules/${PV}/build"

	dodir /boot
	insinto /boot
	newins "${S}/arch/$ARCH/boot/bzImage" "bzlinux-${PV}"
}

src_postinst() {
	# TODO add this to syslinux.cnf
	true
}

src_prerm() {
	# TODO remove this from syslinux.cnf
	true
}