blob: 8c7fbdea424b80caac92ff07de29220cf3900e92 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
GIT_REV="b957be36d793c59c5a12d1f00419c253d38dde1f"
DESCRIPTION="Linux kernel"
HOMEPAGE="http://kernel.org/"
SRC_URI="https://codeload.github.com/raspberrypi/linux/zip/${GIT_REV}.zip -> ${P}.zip"
S="${WORKDIR}/linux-${GIT_REV}"
LICENSE="GPLv2"
SLOT="0"
KEYWORDS="-* arm"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
src_configure() {
emake bcm2709_defconfig
}
src_install() {
emake zinstall modules_install dtbs_install INSTALL_PATH="${D}" INSTALL_MOD_PATH="${D}"
}
|