diff options
author | Kurt Kanzenbach <kurt@kmk-computers.de> | 2020-05-01 12:47:15 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2020-05-10 11:12:28 +0200 |
commit | e691d24380fcdab21604bb8273111e74c63a68ec (patch) | |
tree | 27fe6e5c437a1dfd7e8b6c62a9aa7454cce2b7bb /sys-kernel | |
parent | sys-kernel/rt-sources: Add rt sources 5.6.4-rt3 (diff) | |
download | gentoo-e691d24380fcdab21604bb8273111e74c63a68ec.tar.gz gentoo-e691d24380fcdab21604bb8273111e74c63a68ec.tar.bz2 gentoo-e691d24380fcdab21604bb8273111e74c63a68ec.zip |
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@kmk-computers.de>
Closes: https://github.com/gentoo/gentoo/pull/15593
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'sys-kernel')
-rw-r--r-- | sys-kernel/rt-sources/rt-sources-5.4.13_p7.ebuild | 4 |
1 files 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" } |