All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-cgl][PATCH 1/3] iscsi-initiator-utils: make it DISTRO_FEATURE dependent
@ 2017-02-03  0:36 Armin Kuster
  2017-02-03  0:36 ` [meta-cgl][PATCH 2/3] openais: change SRC_URI http to fix error Armin Kuster
  2017-02-03  0:36 ` [meta-cgl][PATCH 3/3] initramfs: fix parsing issue with do to uboot inclusion Armin Kuster
  0 siblings, 2 replies; 6+ messages in thread
From: Armin Kuster @ 2017-02-03  0:36 UTC (permalink / raw)
  To: akuster808, yocto

From: Armin Kuster <akuster@mvista.com>

When this package was updated in OE,
it now requires systemd. Make this optional.

Signed-off-by: Armin Kuster <akuster@mvista.com>
---
 meta-cgl-common/packagegroups/packagegroup-cgl-middleware.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-cgl-common/packagegroups/packagegroup-cgl-middleware.bb b/meta-cgl-common/packagegroups/packagegroup-cgl-middleware.bb
index b0c2cac..045691a 100644
--- a/meta-cgl-common/packagegroups/packagegroup-cgl-middleware.bb
+++ b/meta-cgl-common/packagegroups/packagegroup-cgl-middleware.bb
@@ -42,7 +42,7 @@ RDEPENDS_packagegroup-cgl-middleware = "\
     strongswan \
     vlan \
     corosync \
-    iscsi-initiator-utils \
+ ${@bb.utils.contains("DISTRO_FEATURES", "systemd", "iscsi-initiator-utils", "",d)} \
     openais \
     openipmi \
     openhpi \
-- 
2.7.4



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

* [meta-cgl][PATCH 2/3] openais: change SRC_URI http to fix error
  2017-02-03  0:36 [meta-cgl][PATCH 1/3] iscsi-initiator-utils: make it DISTRO_FEATURE dependent Armin Kuster
@ 2017-02-03  0:36 ` Armin Kuster
  2017-02-20  3:51   ` akuster808
  2017-02-03  0:36 ` [meta-cgl][PATCH 3/3] initramfs: fix parsing issue with do to uboot inclusion Armin Kuster
  1 sibling, 1 reply; 6+ messages in thread
From: Armin Kuster @ 2017-02-03  0:36 UTC (permalink / raw)
  To: akuster808, yocto

From: Armin Kuster <akuster@mvista.com>

ERROR: openais-1.1.4-r0 do_fetch: Error executing a python function in exec_python_func() autogenerated:

ftp://ftp@ breaks the fetcher and really is not needed.

Signed-off-by: Armin Kuster <akuster@mvista.com>
---
 meta-cgl-common/recipes-cgl/openais/openais_1.1.4.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-cgl-common/recipes-cgl/openais/openais_1.1.4.bb b/meta-cgl-common/recipes-cgl/openais/openais_1.1.4.bb
index 69934a5..e503cec 100644
--- a/meta-cgl-common/recipes-cgl/openais/openais_1.1.4.bb
+++ b/meta-cgl-common/recipes-cgl/openais/openais_1.1.4.bb
@@ -5,7 +5,7 @@ DEPENDS = "cluster-glue corosync"
 
 
 SRC_URI = " \
-    ftp://ftp@tux.rainside.sk/gentoo/distfiles/openais-${PV}.tar.gz \
+    http://tux.rainside.sk/gentoo/distfiles/openais-${PV}.tar.gz \
     file://fix-lcrso-linkage.patch \
     file://build-cleanup-configure-ac.patch \
     file://openais-fix-bash.patch \
-- 
2.7.4



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

* [meta-cgl][PATCH 3/3] initramfs: fix parsing issue with do to uboot inclusion
  2017-02-03  0:36 [meta-cgl][PATCH 1/3] iscsi-initiator-utils: make it DISTRO_FEATURE dependent Armin Kuster
  2017-02-03  0:36 ` [meta-cgl][PATCH 2/3] openais: change SRC_URI http to fix error Armin Kuster
@ 2017-02-03  0:36 ` Armin Kuster
  2017-02-03  0:37   ` akuster808
  1 sibling, 1 reply; 6+ messages in thread
From: Armin Kuster @ 2017-02-03  0:36 UTC (permalink / raw)
  To: akuster808, yocto

From: Armin Kuster <akuster@mvista.com>

since the image type includes "uboot", need to inherit the class for it

Signed-off-by: Armin Kuster <akuster@mvista.com>
---
 meta-cgl-common/images/core-image-cgl-initramfs.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-cgl-common/images/core-image-cgl-initramfs.bb b/meta-cgl-common/images/core-image-cgl-initramfs.bb
index 0777b7c..2ebbdf5 100644
--- a/meta-cgl-common/images/core-image-cgl-initramfs.bb
+++ b/meta-cgl-common/images/core-image-cgl-initramfs.bb
@@ -12,8 +12,8 @@ export IMAGE_BASENAME = "core-image-cgl-initramfs"
 IMAGE_LINGUAS = ""
 
 LICENSE = "MIT"
-
-IMAGE_FSTYPES = "cpio.gz.u-boot"
+IMAGE_CLASSES = " image_types_uboot"
+IMAGE_FSTYPES ??= "cpio.gz.u-boot"
 
 IMAGE_ROOTFS_SIZE = "8192"
 
-- 
2.7.4



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

* Re: [meta-cgl][PATCH 3/3] initramfs: fix parsing issue with do to uboot inclusion
  2017-02-03  0:36 ` [meta-cgl][PATCH 3/3] initramfs: fix parsing issue with do to uboot inclusion Armin Kuster
@ 2017-02-03  0:37   ` akuster808
  0 siblings, 0 replies; 6+ messages in thread
From: akuster808 @ 2017-02-03  0:37 UTC (permalink / raw)
  To: Armin Kuster, yocto

ignore this one. started at wrong location

-armin


On 02/02/2017 04:36 PM, Armin Kuster wrote:
> From: Armin Kuster <akuster@mvista.com>
>
> since the image type includes "uboot", need to inherit the class for it
>
> Signed-off-by: Armin Kuster <akuster@mvista.com>
> ---
>   meta-cgl-common/images/core-image-cgl-initramfs.bb | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta-cgl-common/images/core-image-cgl-initramfs.bb b/meta-cgl-common/images/core-image-cgl-initramfs.bb
> index 0777b7c..2ebbdf5 100644
> --- a/meta-cgl-common/images/core-image-cgl-initramfs.bb
> +++ b/meta-cgl-common/images/core-image-cgl-initramfs.bb
> @@ -12,8 +12,8 @@ export IMAGE_BASENAME = "core-image-cgl-initramfs"
>   IMAGE_LINGUAS = ""
>   
>   LICENSE = "MIT"
> -
> -IMAGE_FSTYPES = "cpio.gz.u-boot"
> +IMAGE_CLASSES = " image_types_uboot"
> +IMAGE_FSTYPES ??= "cpio.gz.u-boot"
>   
>   IMAGE_ROOTFS_SIZE = "8192"
>   



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

* Re: [meta-cgl][PATCH 2/3] openais: change SRC_URI http to fix error
  2017-02-03  0:36 ` [meta-cgl][PATCH 2/3] openais: change SRC_URI http to fix error Armin Kuster
@ 2017-02-20  3:51   ` akuster808
  2017-02-22 16:02     ` Adrian Dudau
  0 siblings, 1 reply; 6+ messages in thread
From: akuster808 @ 2017-02-20  3:51 UTC (permalink / raw)
  To: yocto

ping.

is there an issue with this patch ?

- armin

On 02/02/2017 04:36 PM, Armin Kuster wrote:
> From: Armin Kuster <akuster@mvista.com>
>
> ERROR: openais-1.1.4-r0 do_fetch: Error executing a python function in exec_python_func() autogenerated:
>
> ftp://ftp@ breaks the fetcher and really is not needed.
>
> Signed-off-by: Armin Kuster <akuster@mvista.com>
> ---
>   meta-cgl-common/recipes-cgl/openais/openais_1.1.4.bb | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta-cgl-common/recipes-cgl/openais/openais_1.1.4.bb b/meta-cgl-common/recipes-cgl/openais/openais_1.1.4.bb
> index 69934a5..e503cec 100644
> --- a/meta-cgl-common/recipes-cgl/openais/openais_1.1.4.bb
> +++ b/meta-cgl-common/recipes-cgl/openais/openais_1.1.4.bb
> @@ -5,7 +5,7 @@ DEPENDS = "cluster-glue corosync"
>   
>   
>   SRC_URI = " \
> -    ftp://ftp@tux.rainside.sk/gentoo/distfiles/openais-${PV}.tar.gz \
> +    http://tux.rainside.sk/gentoo/distfiles/openais-${PV}.tar.gz \
>       file://fix-lcrso-linkage.patch \
>       file://build-cleanup-configure-ac.patch \
>       file://openais-fix-bash.patch \



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

* Re: [meta-cgl][PATCH 2/3] openais: change SRC_URI http to fix error
  2017-02-20  3:51   ` akuster808
@ 2017-02-22 16:02     ` Adrian Dudau
  0 siblings, 0 replies; 6+ messages in thread
From: Adrian Dudau @ 2017-02-22 16:02 UTC (permalink / raw)
  To: akuster808@gmail.com, yocto@yoctoproject.org

On sön, 2017-02-19 at 19:51 -0800, akuster808 wrote:
> ping.
> 
> is there an issue with this patch ?
> 
> - armin

Hi Armin,
There is nothing wrong with your patches, just that I've been on
vacation the past weeks and now I was trying to get meta-cgl to build
again on master before merging them. 

Anyways, I see Alexandru merged your patches, so all's good.

best regards,
--Adrian

> 
> On 02/02/2017 04:36 PM, Armin Kuster wrote:
> > 
> > From: Armin Kuster <akuster@mvista.com>
> > 
> > ERROR: openais-1.1.4-r0 do_fetch: Error executing a python function
> > in exec_python_func() autogenerated:
> > 
> > ftp://ftp@ breaks the fetcher and really is not needed.
> > 
> > Signed-off-by: Armin Kuster <akuster@mvista.com>
> > ---
> >   meta-cgl-common/recipes-cgl/openais/openais_1.1.4.bb | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/meta-cgl-common/recipes-cgl/openais/openais_1.1.4.bb
> > b/meta-cgl-common/recipes-cgl/openais/openais_1.1.4.bb
> > index 69934a5..e503cec 100644
> > --- a/meta-cgl-common/recipes-cgl/openais/openais_1.1.4.bb
> > +++ b/meta-cgl-common/recipes-cgl/openais/openais_1.1.4.bb
> > @@ -5,7 +5,7 @@ DEPENDS = "cluster-glue corosync"
> >   
> >   
> >   SRC_URI = " \
> > -    ftp://ftp@tux.rainside.sk/gentoo/distfiles/openais-${PV}.tar.g
> > z \
> > +    http://tux.rainside.sk/gentoo/distfiles/openais-${PV}.tar.gz \
> >       file://fix-lcrso-linkage.patch \
> >       file://build-cleanup-configure-ac.patch \
> >       file://openais-fix-bash.patch \

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

end of thread, other threads:[~2017-02-22 16:05 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-03  0:36 [meta-cgl][PATCH 1/3] iscsi-initiator-utils: make it DISTRO_FEATURE dependent Armin Kuster
2017-02-03  0:36 ` [meta-cgl][PATCH 2/3] openais: change SRC_URI http to fix error Armin Kuster
2017-02-20  3:51   ` akuster808
2017-02-22 16:02     ` Adrian Dudau
2017-02-03  0:36 ` [meta-cgl][PATCH 3/3] initramfs: fix parsing issue with do to uboot inclusion Armin Kuster
2017-02-03  0:37   ` akuster808

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.