blob: 4a0934927cd25849b0ce4e73c25da73ab5209612 (
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
71
72
73
74
75
76
77
78
79
80
81
82
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
ETYPE=sources
K_DEFCONFIG="bcmrpi_defconfig"
K_SECURITY_UNSUPPORTED=1
EXTRAVERSION="-${PN}/-*"
K_EXP_GENPATCHES_NOUSE=1
K_GENPATCHES_VER=54
K_DEBLOB_AVAILABLE=0
K_WANT_GENPATCHES="base extras"
inherit kernel-2 linux-info
detect_version
detect_arch
#MY_P=$(ver_cut 4-)
#MY_P="stable_${MY_P/p/}"
COMMIT=789af262fb268b2006099a096faf4a383592ce1b
MY_P=${COMMIT}
DESCRIPTION="Raspberry Pi kernel sources"
HOMEPAGE="https://github.com/raspberrypi/linux"
SRC_URI="
https://github.com/raspberrypi/linux/archive/${MY_P}.tar.gz -> linux-${KV_FULL}.tar.gz
${GENPATCHES_URI}
"
KEYWORDS="~arm ~arm64"
PATCHES=("${FILESDIR}"/${PN}-6.1.21-gentoo-kconfig.patch)
UNIPATCH_EXCLUDE="
10*
15*
1700
1730
2000
201*
2700
2800
29*
3000
4567"
pkg_setup() {
ewarn ""
ewarn "${PN} is *not* supported by the Gentoo Kernel Project in any way."
ewarn "If you need support, please contact the raspberrypi developers directly."
ewarn "Do *not* open bugs in Gentoo's bugzilla unless you have issues with"
ewarn "the ebuilds. Thank you."
ewarn ""
kernel-2_pkg_setup
}
universal_unpack() {
unpack linux-${KV_FULL}.tar.gz
# We want to rename the unpacked directory to a nice normalised string
# bug #762766
mv "${WORKDIR}"/linux-${MY_P} "${WORKDIR}"/linux-${KV_FULL} || die
# remove all backup files
find . -iname "*~" -exec rm {} \; 2>/dev/null
}
src_prepare() {
default
kernel-2_src_prepare
}
pkg_postinst() {
kernel-2_pkg_postinst
}
pkg_postrm() {
kernel-2_pkg_postrm
}
|