diff options
author | Bogdan Purcareata <bogdan.purcareata@freescale.com> | 2014-10-27 11:51:34 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-04 10:27:12 +0000 |
commit | 1c8040ef1c5f9fcb1ff0b119497a7390283cc360 (patch) | |
tree | 5442de82e7e7fe60198bc9151b4964ac65d4812b /meta/recipes-extended/shadow/shadow.inc | |
parent | 18f6c1219a8611ceca75372f2e88454bf60eaf16 (diff) | |
download | poky-1c8040ef1c5f9fcb1ff0b119497a7390283cc360.tar.gz |
shadow: enable support for subordinate IDs
The subordinate IDs support in pkg-shadow allows unprivileged users to manage a
set of UIDs and GIDs. These subordinate IDs are specified by root, and can be
further used by the unprivileged user they have been assigned to. This user can
then create an e.g. user namespace, where he is allowed to manage his own set of
users and group from the pool of subordinate IDs. More details can be found at
http://lwn.net/Articles/533617/.
Pull a required change from upstream in order to make shadow cross-compile with
subordinate IDs support. Enable flag in recipe.
Changes since v1:
- update changelog
(From OE-Core rev: 8548868c05e52700fd4712298b1705b8ec7ae446)
Signed-off-by: Bogdan Purcareata <bogdan.purcareata@freescale.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/shadow/shadow.inc')
-rw-r--r-- | meta/recipes-extended/shadow/shadow.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/shadow/shadow.inc b/meta/recipes-extended/shadow/shadow.inc index 6a769dfc5c..131e541d29 100644 --- a/meta/recipes-extended/shadow/shadow.inc +++ b/meta/recipes-extended/shadow/shadow.inc | |||
@@ -16,6 +16,7 @@ SRC_URI = "http://pkg-shadow.alioth.debian.org/releases/${BPN}-${PV}.tar.xz \ | |||
16 | file://fix-installation-failure-with-subids-disabled.patch \ | 16 | file://fix-installation-failure-with-subids-disabled.patch \ |
17 | file://0001-su.c-fix-to-exec-command-correctly.patch \ | 17 | file://0001-su.c-fix-to-exec-command-correctly.patch \ |
18 | file://0001-Do-not-read-login.defs-before-doing-chroot.patch \ | 18 | file://0001-Do-not-read-login.defs-before-doing-chroot.patch \ |
19 | file://check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch \ | ||
19 | ${@bb.utils.contains('PACKAGECONFIG', 'pam', '${PAM_SRC_URI}', '', d)} \ | 20 | ${@bb.utils.contains('PACKAGECONFIG', 'pam', '${PAM_SRC_URI}', '', d)} \ |
20 | " | 21 | " |
21 | 22 | ||
@@ -52,7 +53,7 @@ EXTRA_OECONF += "--without-audit \ | |||
52 | --without-libcrack \ | 53 | --without-libcrack \ |
53 | --without-selinux \ | 54 | --without-selinux \ |
54 | --with-group-name-max-length=24 \ | 55 | --with-group-name-max-length=24 \ |
55 | --enable-subordinate-ids=no \ | 56 | --enable-subordinate-ids=yes \ |
56 | ${NSCDOPT}" | 57 | ${NSCDOPT}" |
57 | 58 | ||
58 | NSCDOPT = "" | 59 | NSCDOPT = "" |