From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0A4EB138359 for ; Sun, 10 May 2020 09:12:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CBA5AE08D1; Sun, 10 May 2020 09:12:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9369FE08D1 for ; Sun, 10 May 2020 09:12:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A25E734F170 for ; Sun, 10 May 2020 09:12:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21B07235 for ; Sun, 10 May 2020 09:12:55 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1589101948.e691d24380fcdab21604bb8273111e74c63a68ec.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/rt-sources/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-kernel/rt-sources/rt-sources-5.4.13_p7.ebuild X-VCS-Directories: sys-kernel/rt-sources/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: e691d24380fcdab21604bb8273111e74c63a68ec X-VCS-Branch: master Date: Sun, 10 May 2020 09:12:55 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b2f4d27a-8be2-4a40-85d2-57635f1a1a85 X-Archives-Hash: 75c819b416514755424e5c2af443536e commit: e691d24380fcdab21604bb8273111e74c63a68ec Author: Kurt Kanzenbach kmk-computers de> AuthorDate: Fri May 1 10:47:15 2020 +0000 Commit: Thomas Deutschmann gentoo 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 kmk-computers.de> Closes: https://github.com/gentoo/gentoo/pull/15593 Signed-off-by: Thomas Deutschmann 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" }