blob: aef974c6abdd61815d6a7765c9c778f281529911 (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit linux-mod-r1 systemd verify-sig
DESCRIPTION="Linux Kernel Runtime Guard"
HOMEPAGE="https://lkrg.org"
SRC_URI="https://lkrg.org/download/${P}.tar.gz
verify-sig? ( https://lkrg.org/download/${P}.tar.gz.sign )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-openwall )"
# MODULE_NAMES="lkrg(misc:${S}:${S})"
VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}/usr/share/openpgp-keys/openwall.asc"
PATCHES=( "${FILESDIR}/${PN}-0.9.4-gentoo-paths.patch" )
pkg_setup() {
CONFIG_CHECK="HAVE_KRETPROBES KALLSYMS_ALL KPROBES JUMP_LABEL"
CONFIG_CHECK+=" MODULE_UNLOAD !PREEMPT_RT ~STACKTRACE"
linux-mod-r1_pkg_setup
}
src_unpack() {
if use verify-sig; then
verify-sig_verify_detached "${DISTDIR}"/${P}.tar.gz{,.sign}
fi
default
}
src_compile() {
local modlist=( lkrg )
local modargs=(
P_KVER="${KV_FULL}"
P_KERNEL="${KERNEL_DIR}"
)
linux-mod-r1_src_compile
}
src_install() {
linux-mod-r1_src_install
systemd_dounit scripts/bootup/systemd/lkrg.service
newinitd scripts/bootup/openrc/lkrg lkrg.initd
insinto /lib/sysctl.d
newins scripts/bootup/lkrg.conf 01-lkrg.conf
}
|