Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/rt-sources/
Date: Sun, 10 May 2020 09:12:59
Message-Id: 1589101948.e691d24380fcdab21604bb8273111e74c63a68ec.whissi@gentoo
1 commit: e691d24380fcdab21604bb8273111e74c63a68ec
2 Author: Kurt Kanzenbach <kurt <AT> kmk-computers <DOT> de>
3 AuthorDate: Fri May 1 10:47:15 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sun May 10 09:12:28 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e691d243
7
8 sys-kernel/rt-sources: Fix setting of preemption model
9
10 The sed command tries to setup preempt rt as preemption default model. However,
11 that option has been renamed as part of getting rt upstream. So rename the
12 option accordingly
13
14 PREEMPT_RT_FULL -> PREEMPT_RT
15
16 Package-Manager: Portage-2.3.89, Repoman-2.3.20
17 Signed-off-by: Kurt Kanzenbach <kurt <AT> kmk-computers.de>
18 Closes: https://github.com/gentoo/gentoo/pull/15593
19 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
20
21 sys-kernel/rt-sources/rt-sources-5.4.13_p7.ebuild | 4 ++--
22 1 file changed, 2 insertions(+), 2 deletions(-)
23
24 diff --git a/sys-kernel/rt-sources/rt-sources-5.4.13_p7.ebuild b/sys-kernel/rt-sources/rt-sources-5.4.13_p7.ebuild
25 index 81de1512409..a641de8f285 100644
26 --- a/sys-kernel/rt-sources/rt-sources-5.4.13_p7.ebuild
27 +++ b/sys-kernel/rt-sources/rt-sources-5.4.13_p7.ebuild
28 @@ -1,4 +1,4 @@
29 -# Copyright 1999-2019 Gentoo Authors
30 +# Copyright 1999-2020 Gentoo Authors
31 # Distributed under the terms of the GNU General Public License v2
32
33 EAPI="6"
34 @@ -36,7 +36,7 @@ src_prepare() {
35
36 # 627796
37 sed \
38 - "s/default PREEMPT_NONE/default PREEMPT_RT_FULL/g" \
39 + "s/default PREEMPT_NONE/default PREEMPT_RT/g" \
40 -i "${S}/kernel/Kconfig.preempt" || die "sed failed"
41 }