All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [meta-qt5] Missing qt5declarative rootfs
@ 2015-08-31 15:13 Caio
  2015-08-31 15:51 ` Khem Raj
  2015-09-01 14:22 ` Pascal Bach
  0 siblings, 2 replies; 10+ messages in thread
From: Caio @ 2015-08-31 15:13 UTC (permalink / raw
  To: Yocto Project Discussion

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

Hello,

I'm trying to build an Image with meta-qt5 , the problem is that the
qt5declarative is not copied to rootfs.
The qt5declarative package is generated but is not included in the rootfs,
others qt5's packages are included in the rootfs.
What I'm doing wrong?

Yocto 1.7
meta-qt5: d2c05c81e8230358dca80cf9df67e49f9f672a29


my package group

packagegroup-qt5_0.1.bb

SUMMARY = "QT5  package group"
LICENSE = "MIT"

PR = "0"

inherit packagegroup

VIRTUAL_KEYBOARD ?= "maliit-framework-qt5 maliit-plugins-qt5"

IMAGE_INSTALL+ = " \
    dbus \
    qtbase \
    qtbase-plugins \
    qtbase-fonts \
    qtdeclarative \
    qtdeclarative-plugins \
    qtdeclarative-qmlplugins \
    qtmultimedia \
    qtmultimedia-plugins \
    qtmultimedia-qmlplugins \
    qtserialport \
    qtscript \
    qtgraphicaleffects-qmlplugins \
    qtconnectivity-qmlplugins \
    qtxmlpatterns \
    qtquick1 \
    qtquickcontrols \
    qtquickcontrols-qmlplugins \
    qtgstreamer \
    qtsvg \
    qtsvg-plugins \
    qtimageformats \
    qtimageformats-plugin \
    "

RDEPENDS_${PN}= "qtquickcontrols-qmlplugins qtdeclarative-qmlplugins
qtdeclarative-plugins"


My local.conf

MACHINE ??= 'colibri-imx6'
DISTRO ?= 'poky'
PACKAGE_CLASSES ?= "package_ipk "
EXTRA_IMAGE_FEATURES += "debug-tweaks package-management splash "
USER_CLASSES ?= "buildstats image-mklibs image-prelink"
PATCHRESOLVE = "noop"
BB_DISKMON_DIRS = "\
    STOPTASKS,${TMPDIR},1G,100K \
    STOPTASKS,${DL_DIR},1G,100K \
    STOPTASKS,${SSTATE_DIR},1G,100K \
    ABORT,${TMPDIR},100M,1K \
    ABORT,${DL_DIR},100M,1K \
    ABORT,${SSTATE_DIR},100M,1K"
CONF_VERSION = "1"

BB_NUMBER_THREADS = '24'
PARALLEL_MAKE = '-j 24'

ACCEPT_FSL_EULA = "1"
DISTRO_FEATURES_remove = "x11 wayland nfc 3g bluetooth irda ppp zerconf"
IMAGE_OVERHEAD_FACTOR = "2"

DISTRO_FEATURES_append = " opengl pulseaudio alsa systemd wifi ethernet
loopback"
PACKAGECONFIG_DISTRO_pn-qtbase = "accessibility qtxmlpatterns"
PACKAGECONFIG_DISTRO_pn-qtdeclarative = "qtxmlpatterns"
CORE_IMAGE_EXTRA_INSTALL_append = " kernel-modules module-init-tools-depmod
modutils-initscripts udev qtsmarthome quitbattery"

IMAGE_INSTALL_append = " \
    firmware-imx-vpu-imx6d \
    packagegroup-gstreamer \
    packagegroup-qt5 \
    packagegroup-core \
    packagegroup-base-graphics \
"
PREFERRED_PROVIDER_psplash-support = "psplash-angstrom"
PREFERRED_PROVIDER_glibc = "glibc"




Thank you very much!

Regards,


-- 
----------------------------------------------
Caio Pereira

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

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

* Re: [meta-qt5] Missing qt5declarative rootfs
  2015-08-31 15:13 [meta-qt5] Missing qt5declarative rootfs Caio
@ 2015-08-31 15:51 ` Khem Raj
  2015-08-31 18:23   ` Caio
  2015-09-01 14:22 ` Pascal Bach
  1 sibling, 1 reply; 10+ messages in thread
From: Khem Raj @ 2015-08-31 15:51 UTC (permalink / raw
  To: Caio; +Cc: Yocto Project Discussion


[-- Attachment #1.1: Type: text/plain, Size: 900 bytes --]


> On Aug 31, 2015, at 8:13 AM, Caio <caiortp@gmail.com> wrote:
> 
> VIRTUAL_KEYBOARD ?= "maliit-framework-qt5 maliit-plugins-qt5"
> 
> IMAGE_INSTALL+ = “ \
                                 ^

if you pasted the recipe verbatim then there is a typo there there should be no space between + and =


>     dbus \
>     qtbase \
>     qtbase-plugins \
>     qtbase-fonts \
>     qtdeclarative \
>     qtdeclarative-plugins \
>     qtdeclarative-qmlplugins \
>     qtmultimedia \
>     qtmultimedia-plugins \
>     qtmultimedia-qmlplugins \
>     qtserialport \
>     qtscript \
>     qtgraphicaleffects-qmlplugins \
>     qtconnectivity-qmlplugins \
>     qtxmlpatterns \
>     qtquick1 \
>     qtquickcontrols \
>     qtquickcontrols-qmlplugins \
>     qtgstreamer \
>     qtsvg \
>     qtsvg-plugins \
>     qtimageformats \
>     qtimageformats-plugin \
>     "


[-- Attachment #1.2: Type: text/html, Size: 20910 bytes --]

[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 211 bytes --]

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

* Re: [meta-qt5] Missing qt5declarative rootfs
  2015-08-31 15:51 ` Khem Raj
@ 2015-08-31 18:23   ` Caio
  0 siblings, 0 replies; 10+ messages in thread
From: Caio @ 2015-08-31 18:23 UTC (permalink / raw
  To: Khem Raj; +Cc: Yocto Project Discussion

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

Khem,

I fix the typo but the problem still remains.

Thank you.

Caio Pereira

2015-08-31 12:51 GMT-03:00 Khem Raj <raj.khem@gmail.com>:

>
> On Aug 31, 2015, at 8:13 AM, Caio <caiortp@gmail.com> wrote:
>
> VIRTUAL_KEYBOARD ?= "maliit-framework-qt5 maliit-plugins-qt5"
>
> IMAGE_INSTALL+ = “ \
>
>                                  ^
>
> if you pasted the recipe verbatim then there is a typo there there should
> be no space between + and =
>
>
>     dbus \
>     qtbase \
>     qtbase-plugins \
>     qtbase-fonts \
>     qtdeclarative \
>     qtdeclarative-plugins \
>     qtdeclarative-qmlplugins \
>     qtmultimedia \
>     qtmultimedia-plugins \
>     qtmultimedia-qmlplugins \
>     qtserialport \
>     qtscript \
>     qtgraphicaleffects-qmlplugins \
>     qtconnectivity-qmlplugins \
>     qtxmlpatterns \
>     qtquick1 \
>     qtquickcontrols \
>     qtquickcontrols-qmlplugins \
>     qtgstreamer \
>     qtsvg \
>     qtsvg-plugins \
>     qtimageformats \
>     qtimageformats-plugin \
>     "
>
>
>


-- 
----------------------------------------------
Caio Pereira

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

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

* Re: [meta-qt5] Missing qt5declarative rootfs
  2015-08-31 15:13 [meta-qt5] Missing qt5declarative rootfs Caio
  2015-08-31 15:51 ` Khem Raj
@ 2015-09-01 14:22 ` Pascal Bach
  2015-09-01 14:54   ` Caio
  1 sibling, 1 reply; 10+ messages in thread
From: Pascal Bach @ 2015-09-01 14:22 UTC (permalink / raw
  To: Caio, Yocto Project Discussion

>
>
> my package group
>
> packagegroup-qt5_0.1.bb <http://packagegroup-qt5_0.1.bb>
>
> SUMMARY = "QT5  package group"
> LICENSE = "MIT"
>
> PR = "0"
>
> inherit packagegroup
>
> VIRTUAL_KEYBOARD ?= "maliit-framework-qt5 maliit-plugins-qt5"
>
I don't know if you can use IMAGE_INSTALL in a package group.
Unitl now I have only seen RDEPENDS_${PN} used. IMAGE_INSTALL is normaly only used in images.

> IMAGE_INSTALL+ = " \
>     dbus \
>     qtbase \
>     qtbase-plugins \
>     qtbase-fonts \
>     qtdeclarative \
>     qtdeclarative-plugins \
>     qtdeclarative-qmlplugins \
>     qtmultimedia \
>     qtmultimedia-plugins \
>     qtmultimedia-qmlplugins \
>     qtserialport \
>     qtscript \
>     qtgraphicaleffects-qmlplugins \
>     qtconnectivity-qmlplugins \       
>     qtxmlpatterns \
>     qtquick1 \
>     qtquickcontrols \
>     qtquickcontrols-qmlplugins \
>     qtgstreamer \
>     qtsvg \
>     qtsvg-plugins \
>     qtimageformats \
>     qtimageformats-plugin \
>     "
>
> RDEPENDS_${PN}= "qtquickcontrols-qmlplugins qtdeclarative-qmlplugins qtdeclarative-plugins"
>
>
Pascal



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

* Re: [meta-qt5] Missing qt5declarative rootfs
  2015-09-01 14:22 ` Pascal Bach
@ 2015-09-01 14:54   ` Caio
  2015-09-01 21:05     ` Caio
  0 siblings, 1 reply; 10+ messages in thread
From: Caio @ 2015-09-01 14:54 UTC (permalink / raw
  To: Pascal Bach; +Cc: Yocto Project Discussion

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

Pascal,

You're right, was my mistake.
I updated the recipe to use RDEPENDS_${PN} , but now I'm having problem
with dependence ( qtquickcontrols). I'm trying to fix.


SUMMARY = "QT5  package group"
LICENSE = "MIT"

PR = "0"

inherit packagegroup

RDEPENDS_${PN} += " \
    qtbase \
    qtbase-plugins \
    qtbase-fonts \
    qtdeclarative \
    qtdeclarative-plugins \
    qtdeclarative-qmlplugins \
    qtsvg \
    qtsvg-plugins \
    qtimageformats \
    qtimageformats-plugins \
    qtmultimedia \
    qtmultimedia-plugins \
    qtmultimedia-qmlplugins \
    qtserialport \
    qtscript \
    qtgraphicaleffects-qmlplugins \
    qtconnectivity-qmlplugins \
    qtxmlpatterns \
    qtquick1 \
    qtquick1-plugins \
    qtquick1-qmlplugins \
    qtquickcontrols \
    qtquickcontrols-qmlplugins \
    qtgstreamer \
    "

Error:

Configuring packagegroup-gstreamer.
Configuring opkg-collateral.
Configuring poky-feed-config-opkg.
Configuring quitbattery.
Configuring psplash.
Collected errors:
 * satisfy_dependencies_for: Cannot satisfy the following dependencies for
packagegroup-qt5:
 *     qtquickcontrols *
 * opkg_install_cmd: Cannot install package packagegroup-qt5.

ERROR: Function failed: do_rootfs
ERROR: Logfile of failure stored in:
/home/icchw/fsl-community-bsp/toradex_colibri_imx6/tmp/work/colibri_imx6-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/log.do_rootfs.3458
ERROR: Task 7
(/home/icchw/fsl-community-bsp/sources/poky/meta/recipes-core/images/
core-image-minimal.bb, do_rootfs) failed with exit code '1'


Thank you very much,

Regards,

Caio Pereira


2015-09-01 11:22 GMT-03:00 Pascal Bach <pascal.bach@siemens.com>:

> >
> >
> > my package group
> >
> > packagegroup-qt5_0.1.bb <http://packagegroup-qt5_0.1.bb>
> >
> > SUMMARY = "QT5  package group"
> > LICENSE = "MIT"
> >
> > PR = "0"
> >
> > inherit packagegroup
> >
> > VIRTUAL_KEYBOARD ?= "maliit-framework-qt5 maliit-plugins-qt5"
> >
> I don't know if you can use IMAGE_INSTALL in a package group.
> Unitl now I have only seen RDEPENDS_${PN} used. IMAGE_INSTALL is normaly
> only used in images.
>
> > IMAGE_INSTALL+ = " \
> >     dbus \
> >     qtbase \
> >     qtbase-plugins \
> >     qtbase-fonts \
> >     qtdeclarative \
> >     qtdeclarative-plugins \
> >     qtdeclarative-qmlplugins \
> >     qtmultimedia \
> >     qtmultimedia-plugins \
> >     qtmultimedia-qmlplugins \
> >     qtserialport \
> >     qtscript \
> >     qtgraphicaleffects-qmlplugins \
> >     qtconnectivity-qmlplugins \
> >     qtxmlpatterns \
> >     qtquick1 \
> >     qtquickcontrols \
> >     qtquickcontrols-qmlplugins \
> >     qtgstreamer \
> >     qtsvg \
> >     qtsvg-plugins \
> >     qtimageformats \
> >     qtimageformats-plugin \
> >     "
> >
> > RDEPENDS_${PN}= "qtquickcontrols-qmlplugins qtdeclarative-qmlplugins
> qtdeclarative-plugins"
> >
> >
> Pascal
>
>


-- 
----------------------------------------------
Caio Pereira

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

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

* Re: [meta-qt5] Missing qt5declarative rootfs
  2015-09-01 14:54   ` Caio
@ 2015-09-01 21:05     ` Caio
  2015-09-01 21:57       ` Martin Jansa
  0 siblings, 1 reply; 10+ messages in thread
From: Caio @ 2015-09-01 21:05 UTC (permalink / raw
  Cc: Yocto Project Discussion

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

I created a bbappend for qtquickcontrol with ALLOW_EMPTY_${PN} = "1" to
fix. (Thanks Sergio Prado)

#cat qtquickcontrol_%.bbappend
ALLOW_EMPTY_${PN} = "1"


Thank you guys!


Regards,

Caio Pereira


2015-09-01 11:54 GMT-03:00 Caio <caiortp@gmail.com>:

> Pascal,
>
> You're right, was my mistake.
> I updated the recipe to use RDEPENDS_${PN} , but now I'm having problem
> with dependence ( qtquickcontrols). I'm trying to fix.
>
>
> SUMMARY = "QT5  package group"
> LICENSE = "MIT"
>
> PR = "0"
>
> inherit packagegroup
>
> RDEPENDS_${PN} += " \
>     qtbase \
>     qtbase-plugins \
>     qtbase-fonts \
>     qtdeclarative \
>     qtdeclarative-plugins \
>     qtdeclarative-qmlplugins \
>     qtsvg \
>     qtsvg-plugins \
>     qtimageformats \
>     qtimageformats-plugins \
>     qtmultimedia \
>     qtmultimedia-plugins \
>     qtmultimedia-qmlplugins \
>     qtserialport \
>     qtscript \
>     qtgraphicaleffects-qmlplugins \
>     qtconnectivity-qmlplugins \
>     qtxmlpatterns \
>     qtquick1 \
>     qtquick1-plugins \
>     qtquick1-qmlplugins \
>     qtquickcontrols \
>     qtquickcontrols-qmlplugins \
>     qtgstreamer \
>     "
>
> Error:
>
> Configuring packagegroup-gstreamer.
> Configuring opkg-collateral.
> Configuring poky-feed-config-opkg.
> Configuring quitbattery.
> Configuring psplash.
> Collected errors:
>  * satisfy_dependencies_for: Cannot satisfy the following dependencies for
> packagegroup-qt5:
>  *     qtquickcontrols *
>  * opkg_install_cmd: Cannot install package packagegroup-qt5.
>
> ERROR: Function failed: do_rootfs
> ERROR: Logfile of failure stored in:
> /home/icchw/fsl-community-bsp/toradex_colibri_imx6/tmp/work/colibri_imx6-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/log.do_rootfs.3458
> ERROR: Task 7
> (/home/icchw/fsl-community-bsp/sources/poky/meta/recipes-core/images/
> core-image-minimal.bb, do_rootfs) failed with exit code '1'
>
>
> Thank you very much,
>
> Regards,
>
> Caio Pereira
>
>
> 2015-09-01 11:22 GMT-03:00 Pascal Bach <pascal.bach@siemens.com>:
>
>> >
>> >
>> > my package group
>> >
>> > packagegroup-qt5_0.1.bb <http://packagegroup-qt5_0.1.bb>
>> >
>> > SUMMARY = "QT5  package group"
>> > LICENSE = "MIT"
>> >
>> > PR = "0"
>> >
>> > inherit packagegroup
>> >
>> > VIRTUAL_KEYBOARD ?= "maliit-framework-qt5 maliit-plugins-qt5"
>> >
>> I don't know if you can use IMAGE_INSTALL in a package group.
>> Unitl now I have only seen RDEPENDS_${PN} used. IMAGE_INSTALL is normaly
>> only used in images.
>>
>> > IMAGE_INSTALL+ = " \
>> >     dbus \
>> >     qtbase \
>> >     qtbase-plugins \
>> >     qtbase-fonts \
>> >     qtdeclarative \
>> >     qtdeclarative-plugins \
>> >     qtdeclarative-qmlplugins \
>> >     qtmultimedia \
>> >     qtmultimedia-plugins \
>> >     qtmultimedia-qmlplugins \
>> >     qtserialport \
>> >     qtscript \
>> >     qtgraphicaleffects-qmlplugins \
>> >     qtconnectivity-qmlplugins \
>> >     qtxmlpatterns \
>> >     qtquick1 \
>> >     qtquickcontrols \
>> >     qtquickcontrols-qmlplugins \
>> >     qtgstreamer \
>> >     qtsvg \
>> >     qtsvg-plugins \
>> >     qtimageformats \
>> >     qtimageformats-plugin \
>> >     "
>> >
>> > RDEPENDS_${PN}= "qtquickcontrols-qmlplugins qtdeclarative-qmlplugins
>> qtdeclarative-plugins"
>> >
>> >
>> Pascal
>>
>>
>
>
> --
> ----------------------------------------------
> Caio Pereira
>



-- 
----------------------------------------------
Caio Pereira

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

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

* Re: [meta-qt5] Missing qt5declarative rootfs
  2015-09-01 21:05     ` Caio
@ 2015-09-01 21:57       ` Martin Jansa
  2015-09-02 13:04         ` Caio
  0 siblings, 1 reply; 10+ messages in thread
From: Martin Jansa @ 2015-09-01 21:57 UTC (permalink / raw
  To: Caio; +Cc: Yocto Project Discussion

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

On Tue, Sep 01, 2015 at 06:05:58PM -0300, Caio wrote:
> I created a bbappend for qtquickcontrol with ALLOW_EMPTY_${PN} = "1" to
> fix. (Thanks Sergio Prado)
> 
> #cat qtquickcontrol_%.bbappend
> ALLOW_EMPTY_${PN} = "1"

And what do you expect from empty package installed in your rootfs?

If you need qtquickcontrol-plugins, then you should add
qtquickcontrol-plugins to RDEPENDS, installing empty package is as good
as not installing qtquickcontrol at all.

> 2015-09-01 11:54 GMT-03:00 Caio <caiortp@gmail.com>:
> 
> > Pascal,
> >
> > You're right, was my mistake.
> > I updated the recipe to use RDEPENDS_${PN} , but now I'm having problem
> > with dependence ( qtquickcontrols). I'm trying to fix.
> >
> >
> > SUMMARY = "QT5  package group"
> > LICENSE = "MIT"
> >
> > PR = "0"
> >
> > inherit packagegroup
> >
> > RDEPENDS_${PN} += " \
> >     qtbase \
> >     qtbase-plugins \
> >     qtbase-fonts \
> >     qtdeclarative \
> >     qtdeclarative-plugins \
> >     qtdeclarative-qmlplugins \
> >     qtsvg \
> >     qtsvg-plugins \
> >     qtimageformats \
> >     qtimageformats-plugins \
> >     qtmultimedia \
> >     qtmultimedia-plugins \
> >     qtmultimedia-qmlplugins \
> >     qtserialport \
> >     qtscript \
> >     qtgraphicaleffects-qmlplugins \
> >     qtconnectivity-qmlplugins \
> >     qtxmlpatterns \
> >     qtquick1 \
> >     qtquick1-plugins \
> >     qtquick1-qmlplugins \
> >     qtquickcontrols \
> >     qtquickcontrols-qmlplugins \
> >     qtgstreamer \
> >     "
> >
> > Error:
> >
> > Configuring packagegroup-gstreamer.
> > Configuring opkg-collateral.
> > Configuring poky-feed-config-opkg.
> > Configuring quitbattery.
> > Configuring psplash.
> > Collected errors:
> >  * satisfy_dependencies_for: Cannot satisfy the following dependencies for
> > packagegroup-qt5:
> >  *     qtquickcontrols *
> >  * opkg_install_cmd: Cannot install package packagegroup-qt5.
> >
> > ERROR: Function failed: do_rootfs
> > ERROR: Logfile of failure stored in:
> > /home/icchw/fsl-community-bsp/toradex_colibri_imx6/tmp/work/colibri_imx6-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/log.do_rootfs.3458
> > ERROR: Task 7
> > (/home/icchw/fsl-community-bsp/sources/poky/meta/recipes-core/images/
> > core-image-minimal.bb, do_rootfs) failed with exit code '1'
> >
> >
> > Thank you very much,
> >
> > Regards,
> >
> > Caio Pereira
> >
> >
> > 2015-09-01 11:22 GMT-03:00 Pascal Bach <pascal.bach@siemens.com>:
> >
> >> >
> >> >
> >> > my package group
> >> >
> >> > packagegroup-qt5_0.1.bb <http://packagegroup-qt5_0.1.bb>
> >> >
> >> > SUMMARY = "QT5  package group"
> >> > LICENSE = "MIT"
> >> >
> >> > PR = "0"
> >> >
> >> > inherit packagegroup
> >> >
> >> > VIRTUAL_KEYBOARD ?= "maliit-framework-qt5 maliit-plugins-qt5"
> >> >
> >> I don't know if you can use IMAGE_INSTALL in a package group.
> >> Unitl now I have only seen RDEPENDS_${PN} used. IMAGE_INSTALL is normaly
> >> only used in images.
> >>
> >> > IMAGE_INSTALL+ = " \
> >> >     dbus \
> >> >     qtbase \
> >> >     qtbase-plugins \
> >> >     qtbase-fonts \
> >> >     qtdeclarative \
> >> >     qtdeclarative-plugins \
> >> >     qtdeclarative-qmlplugins \
> >> >     qtmultimedia \
> >> >     qtmultimedia-plugins \
> >> >     qtmultimedia-qmlplugins \
> >> >     qtserialport \
> >> >     qtscript \
> >> >     qtgraphicaleffects-qmlplugins \
> >> >     qtconnectivity-qmlplugins \
> >> >     qtxmlpatterns \
> >> >     qtquick1 \
> >> >     qtquickcontrols \
> >> >     qtquickcontrols-qmlplugins \
> >> >     qtgstreamer \
> >> >     qtsvg \
> >> >     qtsvg-plugins \
> >> >     qtimageformats \
> >> >     qtimageformats-plugin \
> >> >     "
> >> >
> >> > RDEPENDS_${PN}= "qtquickcontrols-qmlplugins qtdeclarative-qmlplugins
> >> qtdeclarative-plugins"
> >> >
> >> >
> >> Pascal
> >>
> >>
> >
> >
> > --
> > ----------------------------------------------
> > Caio Pereira
> >
> 
> 
> 
> -- 
> ----------------------------------------------
> Caio Pereira

> -- 
> _______________________________________________
> 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: 188 bytes --]

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

* Re: [meta-qt5] Missing qt5declarative rootfs
  2015-09-01 21:57       ` Martin Jansa
@ 2015-09-02 13:04         ` Caio
  2015-09-02 13:18           ` Martin Jansa
  0 siblings, 1 reply; 10+ messages in thread
From: Caio @ 2015-09-02 13:04 UTC (permalink / raw
  To: Martin Jansa; +Cc: Yocto Project Discussion

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

I had the same dependency error.

Collected errors:
 * satisfy_dependencies_for: Cannot satisfy the following dependencies for
packagegroup-qt5:
 *     qtquickcontrols-plugins *     qtquickcontrols *
 * opkg_install_cmd: Cannot install package packagegroup-qt5.

ERROR: Function failed: do_rootfs
ERROR: Logfile of failure stored in:
/home/icchw/fsl-community-bsp/toradex_colibri_imx6/tmp/work/colibri_imx6-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/log.do_rootfs.2872
ERROR: Task 7
(/home/icchw/fsl-community-bsp/sources/poky/meta/recipes-core/images/
core-image-minimal.bb, do_rootfs) failed with exit code '1'



Which option is better to add Qt5 packages? Create a package group or add
the packages in the Image recipe?


Thanks

Caio Pereira


2015-09-01 18:57 GMT-03:00 Martin Jansa <martin.jansa@gmail.com>:

> On Tue, Sep 01, 2015 at 06:05:58PM -0300, Caio wrote:
> > I created a bbappend for qtquickcontrol with ALLOW_EMPTY_${PN} = "1" to
> > fix. (Thanks Sergio Prado)
> >
> > #cat qtquickcontrol_%.bbappend
> > ALLOW_EMPTY_${PN} = "1"
>
> And what do you expect from empty package installed in your rootfs?
>
> If you need qtquickcontrol-plugins, then you should add
> qtquickcontrol-plugins to RDEPENDS, installing empty package is as good
> as not installing qtquickcontrol at all.
>
> > 2015-09-01 11:54 GMT-03:00 Caio <caiortp@gmail.com>:
> >
> > > Pascal,
> > >
> > > You're right, was my mistake.
> > > I updated the recipe to use RDEPENDS_${PN} , but now I'm having problem
> > > with dependence ( qtquickcontrols). I'm trying to fix.
> > >
> > >
> > > SUMMARY = "QT5  package group"
> > > LICENSE = "MIT"
> > >
> > > PR = "0"
> > >
> > > inherit packagegroup
> > >
> > > RDEPENDS_${PN} += " \
> > >     qtbase \
> > >     qtbase-plugins \
> > >     qtbase-fonts \
> > >     qtdeclarative \
> > >     qtdeclarative-plugins \
> > >     qtdeclarative-qmlplugins \
> > >     qtsvg \
> > >     qtsvg-plugins \
> > >     qtimageformats \
> > >     qtimageformats-plugins \
> > >     qtmultimedia \
> > >     qtmultimedia-plugins \
> > >     qtmultimedia-qmlplugins \
> > >     qtserialport \
> > >     qtscript \
> > >     qtgraphicaleffects-qmlplugins \
> > >     qtconnectivity-qmlplugins \
> > >     qtxmlpatterns \
> > >     qtquick1 \
> > >     qtquick1-plugins \
> > >     qtquick1-qmlplugins \
> > >     qtquickcontrols \
> > >     qtquickcontrols-qmlplugins \
> > >     qtgstreamer \
> > >     "
> > >
> > > Error:
> > >
> > > Configuring packagegroup-gstreamer.
> > > Configuring opkg-collateral.
> > > Configuring poky-feed-config-opkg.
> > > Configuring quitbattery.
> > > Configuring psplash.
> > > Collected errors:
> > >  * satisfy_dependencies_for: Cannot satisfy the following dependencies
> for
> > > packagegroup-qt5:
> > >  *     qtquickcontrols *
> > >  * opkg_install_cmd: Cannot install package packagegroup-qt5.
> > >
> > > ERROR: Function failed: do_rootfs
> > > ERROR: Logfile of failure stored in:
> > >
> /home/icchw/fsl-community-bsp/toradex_colibri_imx6/tmp/work/colibri_imx6-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/log.do_rootfs.3458
> > > ERROR: Task 7
> > > (/home/icchw/fsl-community-bsp/sources/poky/meta/recipes-core/images/
> > > core-image-minimal.bb, do_rootfs) failed with exit code '1'
> > >
> > >
> > > Thank you very much,
> > >
> > > Regards,
> > >
> > > Caio Pereira
> > >
> > >
> > > 2015-09-01 11:22 GMT-03:00 Pascal Bach <pascal.bach@siemens.com>:
> > >
> > >> >
> > >> >
> > >> > my package group
> > >> >
> > >> > packagegroup-qt5_0.1.bb <http://packagegroup-qt5_0.1.bb>
> > >> >
> > >> > SUMMARY = "QT5  package group"
> > >> > LICENSE = "MIT"
> > >> >
> > >> > PR = "0"
> > >> >
> > >> > inherit packagegroup
> > >> >
> > >> > VIRTUAL_KEYBOARD ?= "maliit-framework-qt5 maliit-plugins-qt5"
> > >> >
> > >> I don't know if you can use IMAGE_INSTALL in a package group.
> > >> Unitl now I have only seen RDEPENDS_${PN} used. IMAGE_INSTALL is
> normaly
> > >> only used in images.
> > >>
> > >> > IMAGE_INSTALL+ = " \
> > >> >     dbus \
> > >> >     qtbase \
> > >> >     qtbase-plugins \
> > >> >     qtbase-fonts \
> > >> >     qtdeclarative \
> > >> >     qtdeclarative-plugins \
> > >> >     qtdeclarative-qmlplugins \
> > >> >     qtmultimedia \
> > >> >     qtmultimedia-plugins \
> > >> >     qtmultimedia-qmlplugins \
> > >> >     qtserialport \
> > >> >     qtscript \
> > >> >     qtgraphicaleffects-qmlplugins \
> > >> >     qtconnectivity-qmlplugins \
> > >> >     qtxmlpatterns \
> > >> >     qtquick1 \
> > >> >     qtquickcontrols \
> > >> >     qtquickcontrols-qmlplugins \
> > >> >     qtgstreamer \
> > >> >     qtsvg \
> > >> >     qtsvg-plugins \
> > >> >     qtimageformats \
> > >> >     qtimageformats-plugin \
> > >> >     "
> > >> >
> > >> > RDEPENDS_${PN}= "qtquickcontrols-qmlplugins qtdeclarative-qmlplugins
> > >> qtdeclarative-plugins"
> > >> >
> > >> >
> > >> Pascal
> > >>
> > >>
> > >
> > >
> > > --
> > > ----------------------------------------------
> > > Caio Pereira
> > >
> >
> >
> >
> > --
> > ----------------------------------------------
> > Caio Pereira
>
> > --
> > _______________________________________________
> > yocto mailing list
> > yocto@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/yocto
>
>
> --
> Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com
>



-- 
----------------------------------------------
Caio Pereira

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

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

* Re: [meta-qt5] Missing qt5declarative rootfs
  2015-09-02 13:04         ` Caio
@ 2015-09-02 13:18           ` Martin Jansa
  2015-09-03 16:48             ` Caio
  0 siblings, 1 reply; 10+ messages in thread
From: Martin Jansa @ 2015-09-02 13:18 UTC (permalink / raw
  To: Caio; +Cc: Yocto Project Discussion

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

On Wed, Sep 02, 2015 at 10:04:19AM -0300, Caio wrote:
> I had the same dependency error.
> 
> Collected errors:
>  * satisfy_dependencies_for: Cannot satisfy the following dependencies for
> packagegroup-qt5:
>  *     qtquickcontrols-plugins *     qtquickcontrols *
>  * opkg_install_cmd: Cannot install package packagegroup-qt5.
> 
> ERROR: Function failed: do_rootfs
> ERROR: Logfile of failure stored in:
> /home/icchw/fsl-community-bsp/toradex_colibri_imx6/tmp/work/colibri_imx6-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/log.do_rootfs.2872
> ERROR: Task 7
> (/home/icchw/fsl-community-bsp/sources/poky/meta/recipes-core/images/
> core-image-minimal.bb, do_rootfs) failed with exit code '1'

And fixing that by creating empty packages is the worst thing you can do..

qtquickcontrols is probably empty because you didn't enable right
PACKAGECONFIG options for qtbase (accessiblity), see README and
qtbase_git.bb

> Which option is better to add Qt5 packages? Create a package group or add
> the packages in the Image recipe?

It doesn't matter, packagegroup is better if you want to group all qt5
related packages together and/or reuse the same packagegroup from
various images.

> 2015-09-01 18:57 GMT-03:00 Martin Jansa <martin.jansa@gmail.com>:
> 
> > On Tue, Sep 01, 2015 at 06:05:58PM -0300, Caio wrote:
> > > I created a bbappend for qtquickcontrol with ALLOW_EMPTY_${PN} = "1" to
> > > fix. (Thanks Sergio Prado)
> > >
> > > #cat qtquickcontrol_%.bbappend
> > > ALLOW_EMPTY_${PN} = "1"
> >
> > And what do you expect from empty package installed in your rootfs?
> >
> > If you need qtquickcontrol-plugins, then you should add
> > qtquickcontrol-plugins to RDEPENDS, installing empty package is as good
> > as not installing qtquickcontrol at all.
> >
> > > 2015-09-01 11:54 GMT-03:00 Caio <caiortp@gmail.com>:
> > >
> > > > Pascal,
> > > >
> > > > You're right, was my mistake.
> > > > I updated the recipe to use RDEPENDS_${PN} , but now I'm having problem
> > > > with dependence ( qtquickcontrols). I'm trying to fix.
> > > >
> > > >
> > > > SUMMARY = "QT5  package group"
> > > > LICENSE = "MIT"
> > > >
> > > > PR = "0"
> > > >
> > > > inherit packagegroup
> > > >
> > > > RDEPENDS_${PN} += " \
> > > >     qtbase \
> > > >     qtbase-plugins \
> > > >     qtbase-fonts \
> > > >     qtdeclarative \
> > > >     qtdeclarative-plugins \
> > > >     qtdeclarative-qmlplugins \
> > > >     qtsvg \
> > > >     qtsvg-plugins \
> > > >     qtimageformats \
> > > >     qtimageformats-plugins \
> > > >     qtmultimedia \
> > > >     qtmultimedia-plugins \
> > > >     qtmultimedia-qmlplugins \
> > > >     qtserialport \
> > > >     qtscript \
> > > >     qtgraphicaleffects-qmlplugins \
> > > >     qtconnectivity-qmlplugins \
> > > >     qtxmlpatterns \
> > > >     qtquick1 \
> > > >     qtquick1-plugins \
> > > >     qtquick1-qmlplugins \
> > > >     qtquickcontrols \
> > > >     qtquickcontrols-qmlplugins \
> > > >     qtgstreamer \
> > > >     "
> > > >
> > > > Error:
> > > >
> > > > Configuring packagegroup-gstreamer.
> > > > Configuring opkg-collateral.
> > > > Configuring poky-feed-config-opkg.
> > > > Configuring quitbattery.
> > > > Configuring psplash.
> > > > Collected errors:
> > > >  * satisfy_dependencies_for: Cannot satisfy the following dependencies
> > for
> > > > packagegroup-qt5:
> > > >  *     qtquickcontrols *
> > > >  * opkg_install_cmd: Cannot install package packagegroup-qt5.
> > > >
> > > > ERROR: Function failed: do_rootfs
> > > > ERROR: Logfile of failure stored in:
> > > >
> > /home/icchw/fsl-community-bsp/toradex_colibri_imx6/tmp/work/colibri_imx6-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/log.do_rootfs.3458
> > > > ERROR: Task 7
> > > > (/home/icchw/fsl-community-bsp/sources/poky/meta/recipes-core/images/
> > > > core-image-minimal.bb, do_rootfs) failed with exit code '1'
> > > >
> > > >
> > > > Thank you very much,
> > > >
> > > > Regards,
> > > >
> > > > Caio Pereira
> > > >
> > > >
> > > > 2015-09-01 11:22 GMT-03:00 Pascal Bach <pascal.bach@siemens.com>:
> > > >
> > > >> >
> > > >> >
> > > >> > my package group
> > > >> >
> > > >> > packagegroup-qt5_0.1.bb <http://packagegroup-qt5_0.1.bb>
> > > >> >
> > > >> > SUMMARY = "QT5  package group"
> > > >> > LICENSE = "MIT"
> > > >> >
> > > >> > PR = "0"
> > > >> >
> > > >> > inherit packagegroup
> > > >> >
> > > >> > VIRTUAL_KEYBOARD ?= "maliit-framework-qt5 maliit-plugins-qt5"
> > > >> >
> > > >> I don't know if you can use IMAGE_INSTALL in a package group.
> > > >> Unitl now I have only seen RDEPENDS_${PN} used. IMAGE_INSTALL is
> > normaly
> > > >> only used in images.
> > > >>
> > > >> > IMAGE_INSTALL+ = " \
> > > >> >     dbus \
> > > >> >     qtbase \
> > > >> >     qtbase-plugins \
> > > >> >     qtbase-fonts \
> > > >> >     qtdeclarative \
> > > >> >     qtdeclarative-plugins \
> > > >> >     qtdeclarative-qmlplugins \
> > > >> >     qtmultimedia \
> > > >> >     qtmultimedia-plugins \
> > > >> >     qtmultimedia-qmlplugins \
> > > >> >     qtserialport \
> > > >> >     qtscript \
> > > >> >     qtgraphicaleffects-qmlplugins \
> > > >> >     qtconnectivity-qmlplugins \
> > > >> >     qtxmlpatterns \
> > > >> >     qtquick1 \
> > > >> >     qtquickcontrols \
> > > >> >     qtquickcontrols-qmlplugins \
> > > >> >     qtgstreamer \
> > > >> >     qtsvg \
> > > >> >     qtsvg-plugins \
> > > >> >     qtimageformats \
> > > >> >     qtimageformats-plugin \
> > > >> >     "
> > > >> >
> > > >> > RDEPENDS_${PN}= "qtquickcontrols-qmlplugins qtdeclarative-qmlplugins
> > > >> qtdeclarative-plugins"
> > > >> >
> > > >> >
> > > >> Pascal
> > > >>
> > > >>
> > > >
> > > >
> > > > --
> > > > ----------------------------------------------
> > > > Caio Pereira
> > > >
> > >
> > >
> > >
> > > --
> > > ----------------------------------------------
> > > Caio Pereira
> >
> > > --
> > > _______________________________________________
> > > yocto mailing list
> > > yocto@yoctoproject.org
> > > https://lists.yoctoproject.org/listinfo/yocto
> >
> >
> > --
> > Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com
> >
> 
> 
> 
> -- 
> ----------------------------------------------
> Caio Pereira

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

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

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

* Re: [meta-qt5] Missing qt5declarative rootfs
  2015-09-02 13:18           ` Martin Jansa
@ 2015-09-03 16:48             ` Caio
  0 siblings, 0 replies; 10+ messages in thread
From: Caio @ 2015-09-03 16:48 UTC (permalink / raw
  To: Martin Jansa; +Cc: Yocto Project Discussion

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

Martin,
I tested with PACKAGECONFIG_pn-qtbase = " accessibility"  and after with
PACKAGECONFIG_append_pn-qtbase in the local.conf but the problem still the
same.


Collected errors:
 * satisfy_dependencies_for: Cannot satisfy the following dependencies for
packagegroup-qt5:
 *     qtquickcontrols-plugins *     qtquickcontrols *
 * opkg_install_cmd: Cannot install package packagegroup-qt5.

ERROR: Function failed: do_rootfs
ERROR: Logfile of failure stored in:
/home/icchw/fsl-community-bsp/toradex_colibri_imx6/tmp/work/colibri_imx6-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/log.do_rootfs.18724

I'm trying to find what is missing or wrong.

Thank you very much!.

Regards

Caio Pereira

2015-09-02 10:18 GMT-03:00 Martin Jansa <martin.jansa@gmail.com>:

> On Wed, Sep 02, 2015 at 10:04:19AM -0300, Caio wrote:
> > I had the same dependency error.
> >
> > Collected errors:
> >  * satisfy_dependencies_for: Cannot satisfy the following dependencies
> for
> > packagegroup-qt5:
> >  *     qtquickcontrols-plugins *     qtquickcontrols *
> >  * opkg_install_cmd: Cannot install package packagegroup-qt5.
> >
> > ERROR: Function failed: do_rootfs
> > ERROR: Logfile of failure stored in:
> >
> /home/icchw/fsl-community-bsp/toradex_colibri_imx6/tmp/work/colibri_imx6-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/log.do_rootfs.2872
> > ERROR: Task 7
> > (/home/icchw/fsl-community-bsp/sources/poky/meta/recipes-core/images/
> > core-image-minimal.bb, do_rootfs) failed with exit code '1'
>
> And fixing that by creating empty packages is the worst thing you can do..
>
> qtquickcontrols is probably empty because you didn't enable right
> PACKAGECONFIG options for qtbase (accessiblity), see README and
> qtbase_git.bb
>
> > Which option is better to add Qt5 packages? Create a package group or add
> > the packages in the Image recipe?
>
> It doesn't matter, packagegroup is better if you want to group all qt5
> related packages together and/or reuse the same packagegroup from
> various images.
>
> > 2015-09-01 18:57 GMT-03:00 Martin Jansa <martin.jansa@gmail.com>:
> >
> > > On Tue, Sep 01, 2015 at 06:05:58PM -0300, Caio wrote:
> > > > I created a bbappend for qtquickcontrol with ALLOW_EMPTY_${PN} = "1"
> to
> > > > fix. (Thanks Sergio Prado)
> > > >
> > > > #cat qtquickcontrol_%.bbappend
> > > > ALLOW_EMPTY_${PN} = "1"
> > >
> > > And what do you expect from empty package installed in your rootfs?
> > >
> > > If you need qtquickcontrol-plugins, then you should add
> > > qtquickcontrol-plugins to RDEPENDS, installing empty package is as good
> > > as not installing qtquickcontrol at all.
> > >
> > > > 2015-09-01 11:54 GMT-03:00 Caio <caiortp@gmail.com>:
> > > >
> > > > > Pascal,
> > > > >
> > > > > You're right, was my mistake.
> > > > > I updated the recipe to use RDEPENDS_${PN} , but now I'm having
> problem
> > > > > with dependence ( qtquickcontrols). I'm trying to fix.
> > > > >
> > > > >
> > > > > SUMMARY = "QT5  package group"
> > > > > LICENSE = "MIT"
> > > > >
> > > > > PR = "0"
> > > > >
> > > > > inherit packagegroup
> > > > >
> > > > > RDEPENDS_${PN} += " \
> > > > >     qtbase \
> > > > >     qtbase-plugins \
> > > > >     qtbase-fonts \
> > > > >     qtdeclarative \
> > > > >     qtdeclarative-plugins \
> > > > >     qtdeclarative-qmlplugins \
> > > > >     qtsvg \
> > > > >     qtsvg-plugins \
> > > > >     qtimageformats \
> > > > >     qtimageformats-plugins \
> > > > >     qtmultimedia \
> > > > >     qtmultimedia-plugins \
> > > > >     qtmultimedia-qmlplugins \
> > > > >     qtserialport \
> > > > >     qtscript \
> > > > >     qtgraphicaleffects-qmlplugins \
> > > > >     qtconnectivity-qmlplugins \
> > > > >     qtxmlpatterns \
> > > > >     qtquick1 \
> > > > >     qtquick1-plugins \
> > > > >     qtquick1-qmlplugins \
> > > > >     qtquickcontrols \
> > > > >     qtquickcontrols-qmlplugins \
> > > > >     qtgstreamer \
> > > > >     "
> > > > >
> > > > > Error:
> > > > >
> > > > > Configuring packagegroup-gstreamer.
> > > > > Configuring opkg-collateral.
> > > > > Configuring poky-feed-config-opkg.
> > > > > Configuring quitbattery.
> > > > > Configuring psplash.
> > > > > Collected errors:
> > > > >  * satisfy_dependencies_for: Cannot satisfy the following
> dependencies
> > > for
> > > > > packagegroup-qt5:
> > > > >  *     qtquickcontrols *
> > > > >  * opkg_install_cmd: Cannot install package packagegroup-qt5.
> > > > >
> > > > > ERROR: Function failed: do_rootfs
> > > > > ERROR: Logfile of failure stored in:
> > > > >
> > >
> /home/icchw/fsl-community-bsp/toradex_colibri_imx6/tmp/work/colibri_imx6-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/log.do_rootfs.3458
> > > > > ERROR: Task 7
> > > > >
> (/home/icchw/fsl-community-bsp/sources/poky/meta/recipes-core/images/
> > > > > core-image-minimal.bb, do_rootfs) failed with exit code '1'
> > > > >
> > > > >
> > > > > Thank you very much,
> > > > >
> > > > > Regards,
> > > > >
> > > > > Caio Pereira
> > > > >
> > > > >
> > > > > 2015-09-01 11:22 GMT-03:00 Pascal Bach <pascal.bach@siemens.com>:
> > > > >
> > > > >> >
> > > > >> >
> > > > >> > my package group
> > > > >> >
> > > > >> > packagegroup-qt5_0.1.bb <http://packagegroup-qt5_0.1.bb>
> > > > >> >
> > > > >> > SUMMARY = "QT5  package group"
> > > > >> > LICENSE = "MIT"
> > > > >> >
> > > > >> > PR = "0"
> > > > >> >
> > > > >> > inherit packagegroup
> > > > >> >
> > > > >> > VIRTUAL_KEYBOARD ?= "maliit-framework-qt5 maliit-plugins-qt5"
> > > > >> >
> > > > >> I don't know if you can use IMAGE_INSTALL in a package group.
> > > > >> Unitl now I have only seen RDEPENDS_${PN} used. IMAGE_INSTALL is
> > > normaly
> > > > >> only used in images.
> > > > >>
> > > > >> > IMAGE_INSTALL+ = " \
> > > > >> >     dbus \
> > > > >> >     qtbase \
> > > > >> >     qtbase-plugins \
> > > > >> >     qtbase-fonts \
> > > > >> >     qtdeclarative \
> > > > >> >     qtdeclarative-plugins \
> > > > >> >     qtdeclarative-qmlplugins \
> > > > >> >     qtmultimedia \
> > > > >> >     qtmultimedia-plugins \
> > > > >> >     qtmultimedia-qmlplugins \
> > > > >> >     qtserialport \
> > > > >> >     qtscript \
> > > > >> >     qtgraphicaleffects-qmlplugins \
> > > > >> >     qtconnectivity-qmlplugins \
> > > > >> >     qtxmlpatterns \
> > > > >> >     qtquick1 \
> > > > >> >     qtquickcontrols \
> > > > >> >     qtquickcontrols-qmlplugins \
> > > > >> >     qtgstreamer \
> > > > >> >     qtsvg \
> > > > >> >     qtsvg-plugins \
> > > > >> >     qtimageformats \
> > > > >> >     qtimageformats-plugin \
> > > > >> >     "
> > > > >> >
> > > > >> > RDEPENDS_${PN}= "qtquickcontrols-qmlplugins
> qtdeclarative-qmlplugins
> > > > >> qtdeclarative-plugins"
> > > > >> >
> > > > >> >
> > > > >> Pascal
> > > > >>
> > > > >>
> > > > >
> > > > >
> > > > > --
> > > > > ----------------------------------------------
> > > > > Caio Pereira
> > > > >
> > > >
> > > >
> > > >
> > > > --
> > > > ----------------------------------------------
> > > > Caio Pereira
> > >
> > > > --
> > > > _______________________________________________
> > > > yocto mailing list
> > > > yocto@yoctoproject.org
> > > > https://lists.yoctoproject.org/listinfo/yocto
> > >
> > >
> > > --
> > > Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com
> > >
> >
> >
> >
> > --
> > ----------------------------------------------
> > Caio Pereira
>
> --
> Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com
>



-- 
----------------------------------------------
Caio Pereira

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

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

end of thread, other threads:[~2015-09-03 16:48 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-31 15:13 [meta-qt5] Missing qt5declarative rootfs Caio
2015-08-31 15:51 ` Khem Raj
2015-08-31 18:23   ` Caio
2015-09-01 14:22 ` Pascal Bach
2015-09-01 14:54   ` Caio
2015-09-01 21:05     ` Caio
2015-09-01 21:57       ` Martin Jansa
2015-09-02 13:04         ` Caio
2015-09-02 13:18           ` Martin Jansa
2015-09-03 16:48             ` Caio

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.