From e691d24380fcdab21604bb8273111e74c63a68ec Mon Sep 17 00:00:00 2001 From: Kurt Kanzenbach Date: Fri, 1 May 2020 12:47:15 +0200 Subject: [PATCH] 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 Closes: https://github.com/gentoo/gentoo/pull/15593 Signed-off-by: Thomas Deutschmann --- 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 81de15124099..a641de8f2850 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" } -- 2.26.2