All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-integrity][PATCH 1/3] layer.conf: add dependency on meta-security
@ 2019-07-24 11:23 Dmitry Eremin-Solenikov
  2019-07-24 11:23 ` [meta-integrity][PATCH 2/3] ima-evm-utils: bump version Dmitry Eremin-Solenikov
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Dmitry Eremin-Solenikov @ 2019-07-24 11:23 UTC (permalink / raw)
  To: yocto

ima-evm-utils recipe depends on keyutils recipe which is a part of
meta-security layer.

Signed-off-by: Dmitry Eremin-Solenikov <dmitry_eremin-solenikov@mentor.com>
---
 meta-integrity/conf/layer.conf | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-integrity/conf/layer.conf b/meta-integrity/conf/layer.conf
index 2f696cf7c332..917aa86e11d7 100644
--- a/meta-integrity/conf/layer.conf
+++ b/meta-integrity/conf/layer.conf
@@ -22,3 +22,5 @@ IMA_EVM_BASE := '${LAYERDIR}'
 OE_TERMINAL_EXPORTS += "IMA_EVM_BASE"
 
 LAYERSERIES_COMPAT_integrity = "warrior"
+# ima-evm-utils depends on keyutils from meta-security
+LAYERDEPENDS_integrity = "core security"
-- 
2.20.1



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

* [meta-integrity][PATCH 2/3] ima-evm-utils: bump version
  2019-07-24 11:23 [meta-integrity][PATCH 1/3] layer.conf: add dependency on meta-security Dmitry Eremin-Solenikov
@ 2019-07-24 11:23 ` Dmitry Eremin-Solenikov
  2019-07-24 11:23 ` [meta-integrity][PATCH 3/3] ima-evm-utils: refresh xattr patch Dmitry Eremin-Solenikov
  2019-07-29  9:49 ` [meta-integrity][PATCH 1/3] layer.conf: add dependency on meta-security Martin Jansa
  2 siblings, 0 replies; 5+ messages in thread
From: Dmitry Eremin-Solenikov @ 2019-07-24 11:23 UTC (permalink / raw)
  To: yocto

Currently selected SRCREV (782224f33cd711050cbf6146a12122cd73f9136b)
comes after 1.1 ima-evm-utils release, so bump PV accordingly.

Signed-off-by: Dmitry Eremin-Solenikov <dmitry_eremin-solenikov@mentor.com>
---
 .../recipes-security/ima-evm-utils/ima-evm-utils_git.bb         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-integrity/recipes-security/ima-evm-utils/ima-evm-utils_git.bb b/meta-integrity/recipes-security/ima-evm-utils/ima-evm-utils_git.bb
index 623de09c3ad7..6d4f008df334 100644
--- a/meta-integrity/recipes-security/ima-evm-utils/ima-evm-utils_git.bb
+++ b/meta-integrity/recipes-security/ima-evm-utils/ima-evm-utils_git.bb
@@ -6,7 +6,7 @@ DEPENDS += "openssl attr keyutils"
 
 DEPENDS_class-native += "openssl-native keyutils-native"
 
-PV = "1.0+git${SRCPV}"
+PV = "1.1+git${SRCPV}"
 SRCREV = "782224f33cd711050cbf6146a12122cd73f9136b"
 SRC_URI = "git://git.code.sf.net/p/linux-ima/ima-evm-utils"
 
-- 
2.20.1



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

* [meta-integrity][PATCH 3/3] ima-evm-utils: refresh xattr patch
  2019-07-24 11:23 [meta-integrity][PATCH 1/3] layer.conf: add dependency on meta-security Dmitry Eremin-Solenikov
  2019-07-24 11:23 ` [meta-integrity][PATCH 2/3] ima-evm-utils: bump version Dmitry Eremin-Solenikov
@ 2019-07-24 11:23 ` Dmitry Eremin-Solenikov
  2019-07-29  9:49 ` [meta-integrity][PATCH 1/3] layer.conf: add dependency on meta-security Martin Jansa
  2 siblings, 0 replies; 5+ messages in thread
From: Dmitry Eremin-Solenikov @ 2019-07-24 11:23 UTC (permalink / raw)
  To: yocto

Signed-off-by: Dmitry Eremin-Solenikov <dmitry_eremin-solenikov@mentor.com>
---
 .../evmctl.c-do-not-depend-on-xattr.h-with-IMA-defines.patch  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-integrity/recipes-security/ima-evm-utils/ima-evm-utils/evmctl.c-do-not-depend-on-xattr.h-with-IMA-defines.patch b/meta-integrity/recipes-security/ima-evm-utils/ima-evm-utils/evmctl.c-do-not-depend-on-xattr.h-with-IMA-defines.patch
index c0bdd9b496de..ffa65dfb00a1 100644
--- a/meta-integrity/recipes-security/ima-evm-utils/ima-evm-utils/evmctl.c-do-not-depend-on-xattr.h-with-IMA-defines.patch
+++ b/meta-integrity/recipes-security/ima-evm-utils/ima-evm-utils/evmctl.c-do-not-depend-on-xattr.h-with-IMA-defines.patch
@@ -23,9 +23,9 @@ diff --git a/src/evmctl.c b/src/evmctl.c
 index c54efbb..23cf54c 100644
 --- a/src/evmctl.c
 +++ b/src/evmctl.c
-@@ -56,6 +56,18 @@
- #include <ctype.h>
+@@ -57,6 +57,18 @@
  #include <termios.h>
+ #include <assert.h>
  
 +/*
 + * linux/xattr.h might be old to have this. Allow compilation on older
-- 
2.20.1



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

* Re: [meta-integrity][PATCH 1/3] layer.conf: add dependency on meta-security
  2019-07-24 11:23 [meta-integrity][PATCH 1/3] layer.conf: add dependency on meta-security Dmitry Eremin-Solenikov
  2019-07-24 11:23 ` [meta-integrity][PATCH 2/3] ima-evm-utils: bump version Dmitry Eremin-Solenikov
  2019-07-24 11:23 ` [meta-integrity][PATCH 3/3] ima-evm-utils: refresh xattr patch Dmitry Eremin-Solenikov
@ 2019-07-29  9:49 ` Martin Jansa
  2019-07-29 10:37   ` Dmitry Eremin-Solenikov
  2 siblings, 1 reply; 5+ messages in thread
From: Martin Jansa @ 2019-07-29  9:49 UTC (permalink / raw)
  To: Dmitry Eremin-Solenikov; +Cc: yocto

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

On Wed, Jul 24, 2019 at 02:23:24PM +0300, Dmitry Eremin-Solenikov wrote:
> ima-evm-utils recipe depends on keyutils recipe which is a part of
> meta-security layer.
> 
> Signed-off-by: Dmitry Eremin-Solenikov <dmitry_eremin-solenikov@mentor.com>
> ---
>  meta-integrity/conf/layer.conf | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/meta-integrity/conf/layer.conf b/meta-integrity/conf/layer.conf
> index 2f696cf7c332..917aa86e11d7 100644
> --- a/meta-integrity/conf/layer.conf
> +++ b/meta-integrity/conf/layer.conf
> @@ -22,3 +22,5 @@ IMA_EVM_BASE := '${LAYERDIR}'
>  OE_TERMINAL_EXPORTS += "IMA_EVM_BASE"
>  
>  LAYERSERIES_COMPAT_integrity = "warrior"
> +# ima-evm-utils depends on keyutils from meta-security
> +LAYERDEPENDS_integrity = "core security"

keyutils are now in meta-oe:
http://git.openembedded.org/meta-openembedded/commit/?id=415e213ad75ec9a93171c963395a1c4b92c6233b

> -- 
> 2.20.1
> 
> -- 
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 201 bytes --]

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

* Re: [meta-integrity][PATCH 1/3] layer.conf: add dependency on meta-security
  2019-07-29  9:49 ` [meta-integrity][PATCH 1/3] layer.conf: add dependency on meta-security Martin Jansa
@ 2019-07-29 10:37   ` Dmitry Eremin-Solenikov
  0 siblings, 0 replies; 5+ messages in thread
From: Dmitry Eremin-Solenikov @ 2019-07-29 10:37 UTC (permalink / raw)
  To: Martin Jansa; +Cc: yocto

пн, 29 июл. 2019 г. в 12:49, Martin Jansa <martin.jansa@gmail.com>:
>
> On Wed, Jul 24, 2019 at 02:23:24PM +0300, Dmitry Eremin-Solenikov wrote:
> > ima-evm-utils recipe depends on keyutils recipe which is a part of
> > meta-security layer.
> >
> > Signed-off-by: Dmitry Eremin-Solenikov <dmitry_eremin-solenikov@mentor.com>
> > ---
> >  meta-integrity/conf/layer.conf | 2 ++
> >  1 file changed, 2 insertions(+)
> >
> > diff --git a/meta-integrity/conf/layer.conf b/meta-integrity/conf/layer.conf
> > index 2f696cf7c332..917aa86e11d7 100644
> > --- a/meta-integrity/conf/layer.conf
> > +++ b/meta-integrity/conf/layer.conf
> > @@ -22,3 +22,5 @@ IMA_EVM_BASE := '${LAYERDIR}'
> >  OE_TERMINAL_EXPORTS += "IMA_EVM_BASE"
> >
> >  LAYERSERIES_COMPAT_integrity = "warrior"
> > +# ima-evm-utils depends on keyutils from meta-security
> > +LAYERDEPENDS_integrity = "core security"
>
> keyutils are now in meta-oe:
> http://git.openembedded.org/meta-openembedded/commit/?id=415e213ad75ec9a93171c963395a1c4b92c6233b

Thank you!

-- 
With best wishes
Dmitry


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

end of thread, other threads:[~2019-07-29 10:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-24 11:23 [meta-integrity][PATCH 1/3] layer.conf: add dependency on meta-security Dmitry Eremin-Solenikov
2019-07-24 11:23 ` [meta-integrity][PATCH 2/3] ima-evm-utils: bump version Dmitry Eremin-Solenikov
2019-07-24 11:23 ` [meta-integrity][PATCH 3/3] ima-evm-utils: refresh xattr patch Dmitry Eremin-Solenikov
2019-07-29  9:49 ` [meta-integrity][PATCH 1/3] layer.conf: add dependency on meta-security Martin Jansa
2019-07-29 10:37   ` Dmitry Eremin-Solenikov

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.