commit:     e691d24380fcdab21604bb8273111e74c63a68ec
Author:     Kurt Kanzenbach <kurt <AT> kmk-computers <DOT> de>
AuthorDate: Fri May  1 10:47:15 2020 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun May 10 09:12:28 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e691d243

sys-kernel/rt-sources: Fix setting of preemption model

The sed command tries to setup preempt rt as preemption default model. However,
that option has been renamed as part of getting rt upstream. So rename the
option accordingly

 PREEMPT_RT_FULL -> PREEMPT_RT

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Kurt Kanzenbach <kurt <AT> kmk-computers.de>
Closes: https://github.com/gentoo/gentoo/pull/15593
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 sys-kernel/rt-sources/rt-sources-5.4.13_p7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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
index 81de1512409..a641de8f285 100644
--- a/sys-kernel/rt-sources/rt-sources-5.4.13_p7.ebuild
+++ b/sys-kernel/rt-sources/rt-sources-5.4.13_p7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -36,7 +36,7 @@ src_prepare() {
 
        # 627796
        sed \
-               "s/default PREEMPT_NONE/default PREEMPT_RT_FULL/g" \
+               "s/default PREEMPT_NONE/default PREEMPT_RT/g" \
                -i "${S}/kernel/Kconfig.preempt" || die "sed failed"
 }
 

Reply via email to