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 47B4E1382DE for ; Sat, 2 Jul 2016 15:31:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86E7A141E3; Sat, 2 Jul 2016 15:31:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2A29C141E3 for ; Sat, 2 Jul 2016 15:31:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4347334087C for ; Sat, 2 Jul 2016 15:31:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F75E78 for ; Sat, 2 Jul 2016 15:31:33 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1467473479.69af2da49481a0d114da92c3cb339ce48617c9b7.mpagano@gentoo> Subject: [gentoo-commits] proj/linux-patches:4.1 commit in: / X-VCS-Repository: proj/linux-patches X-VCS-Files: 4567_distro-Gentoo-Kconfig.patch X-VCS-Directories: / X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: 69af2da49481a0d114da92c3cb339ce48617c9b7 X-VCS-Branch: 4.1 Date: Sat, 2 Jul 2016 15:31:33 +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-Archives-Salt: d21a649e-6261-4481-a45a-69e83eb73b16 X-Archives-Hash: 5c25b794014ad2f31219a7e85f7956eb commit: 69af2da49481a0d114da92c3cb339ce48617c9b7 Author: Mike Pagano gentoo org> AuthorDate: Sat Jul 2 15:31:19 2016 +0000 Commit: Mike Pagano gentoo org> CommitDate: Sat Jul 2 15:31:19 2016 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=69af2da4 Select SYSVIPC when GENTOO_LINUX_PORTAGE is selected. Dependency of IPC_NS. See bug #587736. 4567_distro-Gentoo-Kconfig.patch | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/4567_distro-Gentoo-Kconfig.patch b/4567_distro-Gentoo-Kconfig.patch index c7af596..499b21f 100644 --- a/4567_distro-Gentoo-Kconfig.patch +++ b/4567_distro-Gentoo-Kconfig.patch @@ -1,5 +1,5 @@ ---- a/Kconfig -+++ b/Kconfig +--- a/Kconfig 2016-07-01 19:22:17.117439707 -0400 ++++ b/Kconfig 2016-07-01 19:21:54.371440596 -0400 @@ -8,4 +8,6 @@ config SRCARCH string option env="SRCARCH" @@ -7,9 +7,9 @@ +source "distro/Kconfig" + source "arch/$SRCARCH/Kconfig" ---- /dev/null -+++ b/distro/Kconfig -@@ -0,0 +1,131 @@ +--- /dev/null 2016-07-01 11:23:26.087932647 -0400 ++++ b/distro/Kconfig 2016-07-01 19:32:35.581415519 -0400 +@@ -0,0 +1,134 @@ +menu "Gentoo Linux" + +config GENTOO_LINUX @@ -63,6 +63,7 @@ + select NAMESPACES + select IPC_NS + select NET_NS ++ select SYSVIPC + + help + This enables options required by various Portage FEATURES. @@ -71,6 +72,8 @@ + CGROUPS (required for FEATURES=cgroup) + IPC_NS (required for FEATURES=ipc-sandbox) + NET_NS (required for FEATURES=network-sandbox) ++ SYSVIPC (required by IPC_NS) ++ + + It is highly recommended that you leave this enabled as these FEATURES + are, or will soon be, enabled by default.