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 4293A1382DE for ; Sat, 2 Jul 2016 15:24:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A206E0B2D; Sat, 2 Jul 2016 15:24:29 +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 28F64E0B2D for ; Sat, 2 Jul 2016 15:24:29 +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 CECB8340D8D for ; Sat, 2 Jul 2016 15:24:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC01D78 for ; Sat, 2 Jul 2016 15:24:18 +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: <1467473042.29c01f454805f39d9d02a91f785a67b6593bf914.mpagano@gentoo> Subject: [gentoo-commits] proj/linux-patches:4.7 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: 29c01f454805f39d9d02a91f785a67b6593bf914 X-VCS-Branch: 4.7 Date: Sat, 2 Jul 2016 15:24:18 +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: 4b4ae16d-8df5-47eb-9561-7244dd18d666 X-Archives-Hash: d5fc6447da1e6da54bcd9c9ec5e7a008 commit: 29c01f454805f39d9d02a91f785a67b6593bf914 Author: Mike Pagano gentoo org> AuthorDate: Sat Jul 2 15:24:02 2016 +0000 Commit: Mike Pagano gentoo org> CommitDate: Sat Jul 2 15:24:02 2016 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=29c01f45 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.