All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] shadow: enable support for subordinate IDs
@ 2014-10-23 18:26 Bogdan Purcareata
  2014-10-27 15:51 ` [PATCH v2] " Bogdan Purcareata
  0 siblings, 1 reply; 7+ messages in thread
From: Bogdan Purcareata @ 2014-10-23 18:26 UTC (permalink / raw)
  To: openembedded-core

Subordinate IDs support is required in order to enable creation of unprivileged
containers. Pull a required change from upstream in order to make shadow
cross-compile with subordinate IDs support. Enable flag in recipe.

Signed-off-by: Bogdan Purcareata <bogdan.purcareata@freescale.com>
---
 ..._of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch |   41 ++++++++++++++++++++
 meta/recipes-extended/shadow/shadow.inc            |    3 +-
 2 files changed, 43 insertions(+), 1 deletion(-)
 create mode 100644 meta/recipes-extended/shadow/files/check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch

diff --git a/meta/recipes-extended/shadow/files/check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch b/meta/recipes-extended/shadow/files/check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch
new file mode 100644
index 0000000..185590c
--- /dev/null
+++ b/meta/recipes-extended/shadow/files/check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch
@@ -0,0 +1,41 @@
+From 2cb54158b80cdbd97ca3b36df83f9255e923ae3f Mon Sep 17 00:00:00 2001
+From: James Le Cuirot <chewi@aura-online.co.uk>
+Date: Sat, 23 Aug 2014 09:46:39 +0100
+Subject: [PATCH] Check size of uid_t and gid_t using AC_CHECK_SIZEOF
+
+This built-in check is simpler than the previous method and, most
+importantly, works when cross-compiling.
+
+Upstream-Status: Accepted
+[https://github.com/shadow-maint/shadow/commit/2cb54158b80cdbd97ca3b36df83f9255e923ae3f]
+
+Signed-off-by: Serge Hallyn <serge.hallyn@ubuntu.com>
+---
+ configure.in | 14 ++++----------
+ 1 file changed, 4 insertions(+), 10 deletions(-)
+
+diff --git a/configure.in b/configure.in
+index 1a3f841..4a4d6d0 100644
+--- a/configure.in
++++ b/configure.in
+@@ -335,16 +335,10 @@ if test "$enable_subids" != "no"; then
+ 	dnl
+ 	dnl FIXME: check if 32 bit UIDs/GIDs are supported by libc
+ 	dnl
+-	AC_RUN_IFELSE([AC_LANG_SOURCE([
+-#include <sys/types.h>
+-int main(void) {
+-	uid_t u;
+-	gid_t g;
+-	return (sizeof u < 4) || (sizeof g < 4);
+-}
+-	])], [id32bit="yes"], [id32bit="no"])
+-
+-	if test "x$id32bit" = "xyes"; then
++	AC_CHECK_SIZEOF([uid_t],, [#include "sys/types.h"])
++	AC_CHECK_SIZEOF([gid_t],, [#include "sys/types.h"])
++
++	if test "$ac_cv_sizeof_uid_t" -ge 4 && test "$ac_cv_sizeof_gid_t" -ge 4; then
+ 		AC_DEFINE(ENABLE_SUBIDS, 1, [Define to support the subordinate IDs.])
+ 		enable_subids="yes"
+ 	else
diff --git a/meta/recipes-extended/shadow/shadow.inc b/meta/recipes-extended/shadow/shadow.inc
index b2a5f0e..9fada0d 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 \
            file://fix-installation-failure-with-subids-disabled.patch \
            file://0001-su.c-fix-to-exec-command-correctly.patch \
            file://0001-Do-not-read-login.defs-before-doing-chroot.patch \
+           file://check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch \
            ${@bb.utils.contains('PACKAGECONFIG', 'pam', '${PAM_SRC_URI}', '', d)} \
            "
 
@@ -52,7 +53,7 @@ EXTRA_OECONF += "--without-audit \
                  --without-libcrack \
                  --without-selinux \
                  --with-group-name-max-length=24 \
-                 --enable-subordinate-ids=no \
+                 --enable-subordinate-ids=yes \
                  ${NSCDOPT}"
 
 NSCDOPT = ""
-- 
1.7.10.4



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH v2] shadow: enable support for subordinate IDs
  2014-10-23 18:26 [PATCH] shadow: enable support for subordinate IDs Bogdan Purcareata
@ 2014-10-27 15:51 ` Bogdan Purcareata
  2014-11-03 13:09   ` bogdan.purcareata
  0 siblings, 1 reply; 7+ messages in thread
From: Bogdan Purcareata @ 2014-10-27 15:51 UTC (permalink / raw)
  To: openembedded-core

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

Signed-off-by: Bogdan Purcareata <bogdan.purcareata@freescale.com>
---
 ..._of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch |   41 ++++++++++++++++++++
 meta/recipes-extended/shadow/shadow.inc            |    3 +-
 2 files changed, 43 insertions(+), 1 deletion(-)
 create mode 100644 meta/recipes-extended/shadow/files/check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch

diff --git a/meta/recipes-extended/shadow/files/check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch b/meta/recipes-extended/shadow/files/check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch
new file mode 100644
index 0000000..185590c
--- /dev/null
+++ b/meta/recipes-extended/shadow/files/check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch
@@ -0,0 +1,41 @@
+From 2cb54158b80cdbd97ca3b36df83f9255e923ae3f Mon Sep 17 00:00:00 2001
+From: James Le Cuirot <chewi@aura-online.co.uk>
+Date: Sat, 23 Aug 2014 09:46:39 +0100
+Subject: [PATCH] Check size of uid_t and gid_t using AC_CHECK_SIZEOF
+
+This built-in check is simpler than the previous method and, most
+importantly, works when cross-compiling.
+
+Upstream-Status: Accepted
+[https://github.com/shadow-maint/shadow/commit/2cb54158b80cdbd97ca3b36df83f9255e923ae3f]
+
+Signed-off-by: Serge Hallyn <serge.hallyn@ubuntu.com>
+---
+ configure.in | 14 ++++----------
+ 1 file changed, 4 insertions(+), 10 deletions(-)
+
+diff --git a/configure.in b/configure.in
+index 1a3f841..4a4d6d0 100644
+--- a/configure.in
++++ b/configure.in
+@@ -335,16 +335,10 @@ if test "$enable_subids" != "no"; then
+ 	dnl
+ 	dnl FIXME: check if 32 bit UIDs/GIDs are supported by libc
+ 	dnl
+-	AC_RUN_IFELSE([AC_LANG_SOURCE([
+-#include <sys/types.h>
+-int main(void) {
+-	uid_t u;
+-	gid_t g;
+-	return (sizeof u < 4) || (sizeof g < 4);
+-}
+-	])], [id32bit="yes"], [id32bit="no"])
+-
+-	if test "x$id32bit" = "xyes"; then
++	AC_CHECK_SIZEOF([uid_t],, [#include "sys/types.h"])
++	AC_CHECK_SIZEOF([gid_t],, [#include "sys/types.h"])
++
++	if test "$ac_cv_sizeof_uid_t" -ge 4 && test "$ac_cv_sizeof_gid_t" -ge 4; then
+ 		AC_DEFINE(ENABLE_SUBIDS, 1, [Define to support the subordinate IDs.])
+ 		enable_subids="yes"
+ 	else
diff --git a/meta/recipes-extended/shadow/shadow.inc b/meta/recipes-extended/shadow/shadow.inc
index b2a5f0e..9fada0d 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 \
            file://fix-installation-failure-with-subids-disabled.patch \
            file://0001-su.c-fix-to-exec-command-correctly.patch \
            file://0001-Do-not-read-login.defs-before-doing-chroot.patch \
+           file://check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch \
            ${@bb.utils.contains('PACKAGECONFIG', 'pam', '${PAM_SRC_URI}', '', d)} \
            "
 
@@ -52,7 +53,7 @@ EXTRA_OECONF += "--without-audit \
                  --without-libcrack \
                  --without-selinux \
                  --with-group-name-max-length=24 \
-                 --enable-subordinate-ids=no \
+                 --enable-subordinate-ids=yes \
                  ${NSCDOPT}"
 
 NSCDOPT = ""
-- 
1.7.10.4



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH v2] shadow: enable support for subordinate IDs
  2014-10-27 15:51 ` [PATCH v2] " Bogdan Purcareata
@ 2014-11-03 13:09   ` bogdan.purcareata
  2014-11-03 17:48     ` Burton, Ross
  0 siblings, 1 reply; 7+ messages in thread
From: bogdan.purcareata @ 2014-11-03 13:09 UTC (permalink / raw)
  To: openembedded-core

Hello,

Can someone kindly review my patch? I haven't sent patches to this list yet and I don't know who the maintainer is.

Please let me know if there's anything else I can do in order to have this fix merged.

Thank you,
Bogdan P.

> -----Original Message-----
> From: Bogdan Purcareata [mailto:bogdan.purcareata@freescale.com]
> Sent: Monday, October 27, 2014 5:52 PM
> To: openembedded-core@lists.openembedded.org
> Cc: Purcareata Bogdan-B43198
> Subject: [PATCH v2] 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
> 
> Signed-off-by: Bogdan Purcareata <bogdan.purcareata@freescale.com>
> ---
>  ..._of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch |   41
> ++++++++++++++++++++
>  meta/recipes-extended/shadow/shadow.inc            |    3 +-
>  2 files changed, 43 insertions(+), 1 deletion(-)
>  create mode 100644 meta/recipes-
> extended/shadow/files/check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patc
> h
> 
> diff --git a/meta/recipes-
> extended/shadow/files/check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patc
> h b/meta/recipes-
> extended/shadow/files/check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patc
> h
> new file mode 100644
> index 0000000..185590c
> --- /dev/null
> +++ b/meta/recipes-
> extended/shadow/files/check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patc
> h
> @@ -0,0 +1,41 @@
> +From 2cb54158b80cdbd97ca3b36df83f9255e923ae3f Mon Sep 17 00:00:00 2001
> +From: James Le Cuirot <chewi@aura-online.co.uk>
> +Date: Sat, 23 Aug 2014 09:46:39 +0100
> +Subject: [PATCH] Check size of uid_t and gid_t using AC_CHECK_SIZEOF
> +
> +This built-in check is simpler than the previous method and, most
> +importantly, works when cross-compiling.
> +
> +Upstream-Status: Accepted
> +[https://github.com/shadow-
> maint/shadow/commit/2cb54158b80cdbd97ca3b36df83f9255e923ae3f]
> +
> +Signed-off-by: Serge Hallyn <serge.hallyn@ubuntu.com>
> +---
> + configure.in | 14 ++++----------
> + 1 file changed, 4 insertions(+), 10 deletions(-)
> +
> +diff --git a/configure.in b/configure.in
> +index 1a3f841..4a4d6d0 100644
> +--- a/configure.in
> ++++ b/configure.in
> +@@ -335,16 +335,10 @@ if test "$enable_subids" != "no"; then
> + 	dnl
> + 	dnl FIXME: check if 32 bit UIDs/GIDs are supported by libc
> + 	dnl
> +-	AC_RUN_IFELSE([AC_LANG_SOURCE([
> +-#include <sys/types.h>
> +-int main(void) {
> +-	uid_t u;
> +-	gid_t g;
> +-	return (sizeof u < 4) || (sizeof g < 4);
> +-}
> +-	])], [id32bit="yes"], [id32bit="no"])
> +-
> +-	if test "x$id32bit" = "xyes"; then
> ++	AC_CHECK_SIZEOF([uid_t],, [#include "sys/types.h"])
> ++	AC_CHECK_SIZEOF([gid_t],, [#include "sys/types.h"])
> ++
> ++	if test "$ac_cv_sizeof_uid_t" -ge 4 && test "$ac_cv_sizeof_gid_t" -ge 4;
> then
> + 		AC_DEFINE(ENABLE_SUBIDS, 1, [Define to support the subordinate
> IDs.])
> + 		enable_subids="yes"
> + 	else
> diff --git a/meta/recipes-extended/shadow/shadow.inc b/meta/recipes-
> extended/shadow/shadow.inc
> index b2a5f0e..9fada0d 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 \
>             file://fix-installation-failure-with-subids-disabled.patch \
>             file://0001-su.c-fix-to-exec-command-correctly.patch \
>             file://0001-Do-not-read-login.defs-before-doing-chroot.patch \
> +           file://check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch \
>             ${@bb.utils.contains('PACKAGECONFIG', 'pam', '${PAM_SRC_URI}', '',
> d)} \
>             "
> 
> @@ -52,7 +53,7 @@ EXTRA_OECONF += "--without-audit \
>                   --without-libcrack \
>                   --without-selinux \
>                   --with-group-name-max-length=24 \
> -                 --enable-subordinate-ids=no \
> +                 --enable-subordinate-ids=yes \
>                   ${NSCDOPT}"
> 
>  NSCDOPT = ""
> --
> 1.7.10.4



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v2] shadow: enable support for subordinate IDs
  2014-11-03 13:09   ` bogdan.purcareata
@ 2014-11-03 17:48     ` Burton, Ross
  0 siblings, 0 replies; 7+ messages in thread
From: Burton, Ross @ 2014-11-03 17:48 UTC (permalink / raw)
  To: bogdan.purcareata; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 347 bytes --]

On 3 November 2014 13:09, bogdan.purcareata@freescale.com <
bogdan.purcareata@freescale.com> wrote:

> Can someone kindly review my patch? I haven't sent patches to this list
> yet and I don't know who the maintainer is.


This was incorporated into my consolidated pull on Sunday, so expect to see
it merged into master shortly.

Ross

[-- Attachment #2: Type: text/html, Size: 760 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH] shadow: enable support for subordinate IDs
@ 2014-10-23 16:36 Bogdan Purcareata
  2014-10-23 11:04 ` Paul Eggleton
  0 siblings, 1 reply; 7+ messages in thread
From: Bogdan Purcareata @ 2014-10-23 16:36 UTC (permalink / raw)
  To: poky

Subordinate IDs support is required in order to enable creation of unprivileged
containers. Pull a required change from upstream in order to make shadow
cross-compile with subordinate IDs support. Enable flag in recipe.

Signed-off-by: Bogdan Purcareata <bogdan.purcareata@freescale.com>
---
 ..._of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch |   41 ++++++++++++++++++++
 meta/recipes-extended/shadow/shadow.inc            |    3 +-
 2 files changed, 43 insertions(+), 1 deletion(-)
 create mode 100644 meta/recipes-extended/shadow/files/check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch

diff --git a/meta/recipes-extended/shadow/files/check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch b/meta/recipes-extended/shadow/files/check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch
new file mode 100644
index 0000000..185590c
--- /dev/null
+++ b/meta/recipes-extended/shadow/files/check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch
@@ -0,0 +1,41 @@
+From 2cb54158b80cdbd97ca3b36df83f9255e923ae3f Mon Sep 17 00:00:00 2001
+From: James Le Cuirot <chewi@aura-online.co.uk>
+Date: Sat, 23 Aug 2014 09:46:39 +0100
+Subject: [PATCH] Check size of uid_t and gid_t using AC_CHECK_SIZEOF
+
+This built-in check is simpler than the previous method and, most
+importantly, works when cross-compiling.
+
+Upstream-Status: Accepted
+[https://github.com/shadow-maint/shadow/commit/2cb54158b80cdbd97ca3b36df83f9255e923ae3f]
+
+Signed-off-by: Serge Hallyn <serge.hallyn@ubuntu.com>
+---
+ configure.in | 14 ++++----------
+ 1 file changed, 4 insertions(+), 10 deletions(-)
+
+diff --git a/configure.in b/configure.in
+index 1a3f841..4a4d6d0 100644
+--- a/configure.in
++++ b/configure.in
+@@ -335,16 +335,10 @@ if test "$enable_subids" != "no"; then
+ 	dnl
+ 	dnl FIXME: check if 32 bit UIDs/GIDs are supported by libc
+ 	dnl
+-	AC_RUN_IFELSE([AC_LANG_SOURCE([
+-#include <sys/types.h>
+-int main(void) {
+-	uid_t u;
+-	gid_t g;
+-	return (sizeof u < 4) || (sizeof g < 4);
+-}
+-	])], [id32bit="yes"], [id32bit="no"])
+-
+-	if test "x$id32bit" = "xyes"; then
++	AC_CHECK_SIZEOF([uid_t],, [#include "sys/types.h"])
++	AC_CHECK_SIZEOF([gid_t],, [#include "sys/types.h"])
++
++	if test "$ac_cv_sizeof_uid_t" -ge 4 && test "$ac_cv_sizeof_gid_t" -ge 4; then
+ 		AC_DEFINE(ENABLE_SUBIDS, 1, [Define to support the subordinate IDs.])
+ 		enable_subids="yes"
+ 	else
diff --git a/meta/recipes-extended/shadow/shadow.inc b/meta/recipes-extended/shadow/shadow.inc
index b2a5f0e..9fada0d 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 \
            file://fix-installation-failure-with-subids-disabled.patch \
            file://0001-su.c-fix-to-exec-command-correctly.patch \
            file://0001-Do-not-read-login.defs-before-doing-chroot.patch \
+           file://check_size_of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch \
            ${@bb.utils.contains('PACKAGECONFIG', 'pam', '${PAM_SRC_URI}', '', d)} \
            "
 
@@ -52,7 +53,7 @@ EXTRA_OECONF += "--without-audit \
                  --without-libcrack \
                  --without-selinux \
                  --with-group-name-max-length=24 \
-                 --enable-subordinate-ids=no \
+                 --enable-subordinate-ids=yes \
                  ${NSCDOPT}"
 
 NSCDOPT = ""
-- 
1.7.10.4



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] shadow: enable support for subordinate IDs
  2014-10-23 11:04 ` Paul Eggleton
@ 2014-10-23 11:26   ` bogdan.purcareata
  0 siblings, 0 replies; 7+ messages in thread
From: bogdan.purcareata @ 2014-10-23 11:26 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: poky

> -----Original Message-----
> From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com]
> Sent: Thursday, October 23, 2014 2:04 PM
> To: Purcareata Bogdan-B43198
> Cc: poky@yoctoproject.org
> Subject: Re: [poky] [PATCH] shadow: enable support for subordinate IDs
> 
> Hi Bogdan,
> 
> On Thursday 23 October 2014 12:36:36 Bogdan Purcareata wrote:
> > Subordinate IDs support is required in order to enable creation of
> > unprivileged containers. Pull a required change from upstream in order to
> > make shadow cross-compile with subordinate IDs support. Enable flag in
> > recipe.
> >
> > Signed-off-by: Bogdan Purcareata <bogdan.purcareata@freescale.com>
> > ---
> >  ..._of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch |   41
> > ++++++++++++++++++++ meta/recipes-extended/shadow/shadow.inc            |
> 
> This patch modifies files that are part of OE-Core and thus should be sent to
> the OE-Core list. Could you please re-send it there?

Yes, thanks for pointing that out!

Best regards,
Bogdan P.


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] shadow: enable support for subordinate IDs
  2014-10-23 16:36 [PATCH] " Bogdan Purcareata
@ 2014-10-23 11:04 ` Paul Eggleton
  2014-10-23 11:26   ` bogdan.purcareata
  0 siblings, 1 reply; 7+ messages in thread
From: Paul Eggleton @ 2014-10-23 11:04 UTC (permalink / raw)
  To: Bogdan Purcareata; +Cc: poky

Hi Bogdan,

On Thursday 23 October 2014 12:36:36 Bogdan Purcareata wrote:
> Subordinate IDs support is required in order to enable creation of
> unprivileged containers. Pull a required change from upstream in order to
> make shadow cross-compile with subordinate IDs support. Enable flag in
> recipe.
> 
> Signed-off-by: Bogdan Purcareata <bogdan.purcareata@freescale.com>
> ---
>  ..._of_uid_t_and_gid_t_using_AC_CHECK_SIZEOF.patch |   41
> ++++++++++++++++++++ meta/recipes-extended/shadow/shadow.inc            |  

This patch modifies files that are part of OE-Core and thus should be sent to 
the OE-Core list. Could you please re-send it there?

Thanks,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2014-11-03 17:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-10-23 18:26 [PATCH] shadow: enable support for subordinate IDs Bogdan Purcareata
2014-10-27 15:51 ` [PATCH v2] " Bogdan Purcareata
2014-11-03 13:09   ` bogdan.purcareata
2014-11-03 17:48     ` Burton, Ross
  -- strict thread matches above, loose matches on Subject: below --
2014-10-23 16:36 [PATCH] " Bogdan Purcareata
2014-10-23 11:04 ` Paul Eggleton
2014-10-23 11:26   ` bogdan.purcareata

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.