* rootfs_tar.bbclass not found?
@ 2009-05-19 14:03 Jeff Rush
2009-05-20 0:25 ` Denys Dmytriyenko
0 siblings, 1 reply; 3+ messages in thread
From: Jeff Rush @ 2009-05-19 14:03 UTC (permalink / raw)
To: openembedded-devel
Hopefully a trivial question.
Objective: I am trying to generate a tarball of an executable program, the
helloworld.bb program, for installation onto a system that lacks support for
ipk files.
To get a tarball package, I add to my local.conf:
INHERIT += "package_tar package_ipk"
but when I do:
bitbake helloworld
or indeed any target, I get the following error during the parse stage:
ERROR: Could not inherit file classes/rootfs_tar.bbclass while parsing
/home/jeff/Projects/OpenEmbedded/openembedded/recipes/images/slugos-image.bb
This error is repeated for every *-image.bb file parsed. The reason is
because the file classes/image.bbclass has this line at the top of the file:
inherit rootfs_${IMAGE_PKGTYPE}
so it is looking for "rootfs_tar.bbclass" but the only rootfs-*.bbclass files
that exist are:
classes/rootfs_deb.bbclass
classes/rootfs_ipk.bbclass
classes/rootfs_rpm.bbclass
So building an image from tar'd packages is not support - fine, because in
this case I really do not want to build an image, just a single helloworld.tar
package. But I cannot get past the parsing phase because of this problem.
What can I add to my local.conf to 'short circuit' this logic related to the
building of images?
Thanks for helping out a newbie,
-Jeff
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: rootfs_tar.bbclass not found?
2009-05-19 14:03 rootfs_tar.bbclass not found? Jeff Rush
@ 2009-05-20 0:25 ` Denys Dmytriyenko
2009-05-20 5:58 ` Jeff Rush
0 siblings, 1 reply; 3+ messages in thread
From: Denys Dmytriyenko @ 2009-05-20 0:25 UTC (permalink / raw)
To: openembedded-devel
On Tue, May 19, 2009 at 09:03:24AM -0500, Jeff Rush wrote:
> Hopefully a trivial question.
>
> Objective: I am trying to generate a tarball of an executable program, the
> helloworld.bb program, for installation onto a system that lacks support for
> ipk files.
>
> To get a tarball package, I add to my local.conf:
>
> INHERIT += "package_tar package_ipk"
>
> but when I do:
>
> bitbake helloworld
>
> or indeed any target, I get the following error during the parse stage:
>
> ERROR: Could not inherit file classes/rootfs_tar.bbclass while parsing
> /home/jeff/Projects/OpenEmbedded/openembedded/recipes/images/slugos-image.bb
>
> This error is repeated for every *-image.bb file parsed. The reason is
> because the file classes/image.bbclass has this line at the top of the file:
>
> inherit rootfs_${IMAGE_PKGTYPE}
>
> so it is looking for "rootfs_tar.bbclass" but the only rootfs-*.bbclass files
> that exist are:
>
> classes/rootfs_deb.bbclass
> classes/rootfs_ipk.bbclass
> classes/rootfs_rpm.bbclass
>
> So building an image from tar'd packages is not support - fine, because in
> this case I really do not want to build an image, just a single helloworld.tar
> package. But I cannot get past the parsing phase because of this problem.
>
> What can I add to my local.conf to 'short circuit' this logic related to the
> building of images?
Can you try setting BBMASK = "image" in your local.conf?
--
Denys
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: rootfs_tar.bbclass not found?
2009-05-20 0:25 ` Denys Dmytriyenko
@ 2009-05-20 5:58 ` Jeff Rush
0 siblings, 0 replies; 3+ messages in thread
From: Jeff Rush @ 2009-05-20 5:58 UTC (permalink / raw)
To: openembedded-devel
Denys Dmytriyenko wrote:
> On Tue, May 19, 2009 at 09:03:24AM -0500, Jeff Rush wrote:
>> Hopefully a trivial question.
>>
>> What can I add to my local.conf to 'short circuit' this logic related to the
>> building of images?
>
> Can you try setting BBMASK = "image" in your local.conf?
Thanks that worked! I was afraid it might just remove the build target but
not the actual parsing but it actually did both.
-Jeff
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-05-20 6:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-19 14:03 rootfs_tar.bbclass not found? Jeff Rush
2009-05-20 0:25 ` Denys Dmytriyenko
2009-05-20 5:58 ` Jeff Rush
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.