All of lore.kernel.org
 help / color / mirror / Atom feed
* ERROR: No manifest generated
@ 2018-09-05  5:39 Ravikiran J
  2018-09-05 20:17 ` Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Ravikiran J @ 2018-09-05  5:39 UTC (permalink / raw)
  To: Yocto Project

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

Dear Yocto team,

We have developed some recipe file to install  the firmware binary in the
file system of Yocto.
Recipe file is working fine in *Yocto morty* version but when we tried the
same in the *Yocto sumo* version we got the following error for *bitbake
core-image-minimal*.

*ERROR: core-image-minimal-1.0-r0 do_rootfs: No manifest generated from:
rtl-firmware in
/home/graco_sm/1.4.4/GRACO_SM_REL_V1.1/Software/U-Boot-and-Linux/sumo/poky/meta-graco/recipes-graco/firmware/rtl-firmware.bb
<http://rtl-firmware.bb>*
ERROR: core-image-minimal-1.0-r0 do_rootfs: Function failed: do_rootfs
ERROR: Logfile of failure stored in:
/home/graco_sm/1.4.4/GRACO_SM_REL_V1.1/Software/U-Boot-and-Linux/sumo/poky/build/tmp/work/rzn1d400_graco-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/log.do_rootfs.28035
ERROR: Task
(/home/graco_sm/1.4.4/GRACO_SM_REL_V1.1/Software/U-Boot-and-Linux/sumo/poky/meta/recipes-core/images/core-image-minimal.bb:do_rootfs)
failed with exit code '1'


Recipe file* rtl-firmware.bb <http://rtl-firmware.bb> *content

DESCRIPTION = "RTL 8723BU BT firmware"

LICENSE = "MIT"
LIC_FILES_CHKSUM =
"file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690"

PACKAGE_ARCH = "all"

SRC_URI += " \
    file://rtl8723b_fw.bin \
"

do_install () {
    install -d ${D}${base_libdir}/firmware/
    install -m 755 ${WORKDIR}/rtl8723b_fw.bin ${D}${base_libdir}/firmware/
}

FILES_${PN} += " \
        ${base_libdir}/firmware/rtl8723b_fw.bin \
"


What needs to be done for to avoiding manifest error  ?
Kindly help us to resolve this issue.


Thanks and Regards,
Ravikiran J J

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

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

* Re: ERROR: No manifest generated
  2018-09-05  5:39 ERROR: No manifest generated Ravikiran J
@ 2018-09-05 20:17 ` Khem Raj
  2018-09-06 14:03   ` Ravikiran J
  0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2018-09-05 20:17 UTC (permalink / raw)
  To: Ravikiran J, Yocto Project


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



On 9/4/18 10:39 PM, Ravikiran J wrote:
> Dear Yocto team,
> 
> We have developed some recipe file to install  the firmware binary in
> the file system of Yocto.
> Recipe file is working fine in *Yocto morty* version but when we tried
> the same in the *Yocto sumo* version we got the following error for
> *bitbake core-image-minimal*.
> 
> *ERROR: core-image-minimal-1.0-r0 do_rootfs: No manifest generated from:
> rtl-firmware in
> /home/graco_sm/1.4.4/GRACO_SM_REL_V1.1/Software/U-Boot-and-Linux/sumo/poky/meta-graco/recipes-graco/firmware/rtl-firmware.bb
> <http://rtl-firmware.bb>*
> ERROR: core-image-minimal-1.0-r0 do_rootfs: Function failed: do_rootfs
> ERROR: Logfile of failure stored in:
> /home/graco_sm/1.4.4/GRACO_SM_REL_V1.1/Software/U-Boot-and-Linux/sumo/poky/build/tmp/work/rzn1d400_graco-poky-linux-gnueabi/core-image-minimal/1.0-r0/temp/log.do_rootfs.28035
> ERROR: Task
> (/home/graco_sm/1.4.4/GRACO_SM_REL_V1.1/Software/U-Boot-and-Linux/sumo/poky/meta/recipes-core/images/core-image-minimal.bb:do_rootfs)
> failed with exit code '1'
> 
> 

which version of yocto project release is in use here ?


> Recipe file*rtl-firmware.bb <http://rtl-firmware.bb> *content*
> *
> *
> *
> DESCRIPTION = "RTL 8723BU BT firmware"
> 
> LICENSE = "MIT"
> LIC_FILES_CHKSUM =
> "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690"
> 
> PACKAGE_ARCH = "all"

perhaps using inherit allarch  is better here.

> 
> SRC_URI += " \
>     file://rtl8723b_fw.bin \
> "
> 
> do_install () {
>     install -d ${D}${base_libdir}/firmware/
>     install -m 755 ${WORKDIR}/rtl8723b_fw.bin ${D}${base_libdir}/firmware/
> }
> 
> FILES_${PN} += " \
>         ${base_libdir}/firmware/rtl8723b_fw.bin \
> "*
> *
> 
> What needs to be done for to avoiding manifest error  ?
> Kindly help us to resolve this issue.
> 
> 
> Thanks and Regards,
> Ravikiran J J
> 
> 


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

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

* Re: ERROR: No manifest generated
  2018-09-05 20:17 ` Khem Raj
@ 2018-09-06 14:03   ` Ravikiran J
  0 siblings, 0 replies; 3+ messages in thread
From: Ravikiran J @ 2018-09-06 14:03 UTC (permalink / raw)
  To: Khem Raj; +Cc: Yocto Project

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

On Thu, Sep 6, 2018 at 1:47 AM, Khem Raj <raj.khem@gmail.com> wrote:

>
>
> On 9/4/18 10:39 PM, Ravikiran J wrote:
> > Dear Yocto team,
> >
> > We have developed some recipe file to install  the firmware binary in
> > the file system of Yocto.
> > Recipe file is working fine in *Yocto morty* version but when we tried
> > the same in the *Yocto sumo* version we got the following error for
> > *bitbake core-image-minimal*.
> >
> > *ERROR: core-image-minimal-1.0-r0 do_rootfs: No manifest generated from:
> > rtl-firmware in
> > /home/graco_sm/1.4.4/GRACO_SM_REL_V1.1/Software/U-Boot-and-L
> inux/sumo/poky/meta-graco/recipes-graco/firmware/rtl-firmware.bb
> > <http://rtl-firmware.bb>*
> > ERROR: core-image-minimal-1.0-r0 do_rootfs: Function failed: do_rootfs
> > ERROR: Logfile of failure stored in:
> > /home/graco_sm/1.4.4/GRACO_SM_REL_V1.1/Software/U-Boot-and-L
> inux/sumo/poky/build/tmp/work/rzn1d400_graco-poky-linux-gnue
> abi/core-image-minimal/1.0-r0/temp/log.do_rootfs.28035
> > ERROR: Task
> > (/home/graco_sm/1.4.4/GRACO_SM_REL_V1.1/Software/U-Boot-and-
> Linux/sumo/poky/meta/recipes-core/images/core-image-minimal.bb:do_rootfs)
> > failed with exit code '1'
> >
> >
>
> which version of yocto project release is in use here ?
>
*Yocto version 2.5*

>
> > Recipe file*rtl-firmware.bb <http://rtl-firmware.bb> *content*
> > *
> > *
> > *
> > DESCRIPTION = "RTL 8723BU BT firmware"
> >
> > LICENSE = "MIT"
> > LIC_FILES_CHKSUM =
> > "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690"
> >
> > PACKAGE_ARCH = "all"
>
> perhaps using inherit allarch  is better here.
>
> >
> > SRC_URI += " \
> >     file://rtl8723b_fw.bin \
> > "
> >
> > do_install () {
> >     install -d ${D}${base_libdir}/firmware/
> >     install -m 755 ${WORKDIR}/rtl8723b_fw.bin
> ${D}${base_libdir}/firmware/
> > }
> >
> > FILES_${PN} += " \
> >         ${base_libdir}/firmware/rtl8723b_fw.bin \
> > "*
> > *
> >
> > What needs to be done for to avoiding manifest error  ?
> > Kindly help us to resolve this issue.s
> >
> >
> > Thanks and Regards,
> > Ravikiran J J
> >
> >
>
>

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

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

end of thread, other threads:[~2018-09-06 14:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-05  5:39 ERROR: No manifest generated Ravikiran J
2018-09-05 20:17 ` Khem Raj
2018-09-06 14:03   ` Ravikiran J

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.