|
Re: Yocto Image with custom directory layout
Hi,
I tried that but it does pull other packages even if I set in my image:
IMAGE_FEATURES = ""
IMAGE_LINGUAS = ""
PACKAGE_INSTALL = "my-layout-recipe"
Regards
--
Ayoub Zaki
Embedded Systems
Hi,
I tried that but it does pull other packages even if I set in my image:
IMAGE_FEATURES = ""
IMAGE_LINGUAS = ""
PACKAGE_INSTALL = "my-layout-recipe"
Regards
--
Ayoub Zaki
Embedded Systems
|
By
Ayoub Zaki <ayoub.zaki@...>
·
#38361
·
|
|
Re: Yocto Image with custom directory layout
Hi
Should be possible if your image installs only your specific recipes that populate those directories. Means: no packagegroup-core-boot, no base-passwd, no.... -> then nothing should bring along
Hi
Should be possible if your image installs only your specific recipes that populate those directories. Means: no packagegroup-core-boot, no base-passwd, no.... -> then nothing should bring along
|
By
Josef Holzmayr <holzmayr@...>
·
#38360
·
|
|
Re: possible to append or patch existing machine .conf file?
Hi,
you can add to local.conf or distro.conf :
include conf/machine/${MACHINE}-extra.conf
then create in your meta layer or bsp layer
Hi,
you can add to local.conf or distro.conf :
include conf/machine/${MACHINE}-extra.conf
then create in your meta layer or bsp layer
|
By
Ayoub Zaki <ayoub.zaki@...>
·
#38359
·
|
|
[PATCH 1/1] Send email notification on publication
When publishing a layer, send an email notification to all of that
layer's maintainers.
Fixes [YOCTO #11208]
Signed-off-by: Amanda Brindle <amanda.r.brindle@...>
---
layerindex/views.py
When publishing a layer, send an email notification to all of that
layer's maintainers.
Fixes [YOCTO #11208]
Signed-off-by: Amanda Brindle <amanda.r.brindle@...>
---
layerindex/views.py
|
By
Amanda Brindle
·
#38358
·
|
|
[PATCH 0/1] Send email notification on publication
The following changes since commit ad1aac4ea5d4f2b327f7bd9611aed13f7c31ff7e:
Show note if layer branch hasn't been indexed (2017-10-04 13:49:00 +1300)
are available in the git repository at:
The following changes since commit ad1aac4ea5d4f2b327f7bd9611aed13f7c31ff7e:
Show note if layer branch hasn't been indexed (2017-10-04 13:49:00 +1300)
are available in the git repository at:
|
By
Amanda Brindle
·
#38357
·
|
|
Re: possible to append or patch existing machine .conf file?
That would be one way. You could also over-ride from any other global
config file, e.g. local.conf or the distro config file (if you have
one).
Right, the variable is not used by the image recipe, so
That would be one way. You could also over-ride from any other global
config file, e.g. local.conf or the distro config file (if you have
one).
Right, the variable is not used by the image recipe, so
|
By
Andre McCurdy <armccurdy@...>
·
#38356
·
|
|
Yocto Image with custom directory layout
Hi,
I would like to generate an image that contains a custom directories layout for expl:
foo/
├── bar1
│ └── bar2
│ ├── config
│ └──
Hi,
I would like to generate an image that contains a custom directories layout for expl:
foo/
├── bar1
│ └── bar2
│ ├── config
│ └──
|
By
Ayoub Zaki <ayoub.zaki@...>
·
#38355
·
|
|
Re: Layer versions at runtime
Or better yet use
http://www.yoctoproject.org/docs/2.3.2/mega-manual/mega-manual.html#ref-classes-image-buildinfo
to get:
-----------------------
Build Configuration:
Or better yet use
http://www.yoctoproject.org/docs/2.3.2/mega-manual/mega-manual.html#ref-classes-image-buildinfo
to get:
-----------------------
Build Configuration:
|
By
Philip Balister
·
#38354
·
|
|
Re: RFC: Backwards compatibility checking sstate-cache
Hi Richard (and all),
@Richard: Thanks for the input regarding the topic and apologies for not replying until now, I was a bit buried under workload and simultaneously completing my Masters studies.
Hi Richard (and all),
@Richard: Thanks for the input regarding the topic and apologies for not replying until now, I was a bit buried under workload and simultaneously completing my Masters studies.
|
By
Michael Ho
·
#38353
·
|
|
Re: Navigating the layer labyrinth
bitbake-layers supports at least some of this functionality:
$ bitbake-layers -h
NOTE: Starting bitbake server...
usage: bitbake-layers [-d] [-q] [-F] [--color COLOR] [-h] <subcommand> ...
BitBake
bitbake-layers supports at least some of this functionality:
$ bitbake-layers -h
NOTE: Starting bitbake server...
usage: bitbake-layers [-d] [-q] [-F] [--color COLOR] [-h] <subcommand> ...
BitBake
|
By
Joshua Lock <joshua.g.lock@...>
·
#38352
·
|
|
Re: Navigating the layer labyrinth
I think bitbake -e could be of some help with these two things. It's not particularly compact, but it tells you the full story.
Alex
I think bitbake -e could be of some help with these two things. It's not particularly compact, but it tells you the full story.
Alex
|
By
Alexander Kanavin <alexander.kanavin@...>
·
#38351
·
|
|
Re: Navigating the layer labyrinth
Hello,
I am not sure if you've found the OpenEmbedded Layer Index [0] yet, but that's a good resource and an example of what can be done. I believe the source code is available [1] and I've toyed
Hello,
I am not sure if you've found the OpenEmbedded Layer Index [0] yet, but that's a good resource and an example of what can be done. I believe the source code is available [1] and I've toyed
|
By
Aaron Schwartz <aaron.schwartz@...>
·
#38350
·
|
|
possible to append or patch existing machine .conf file?
Suppose I have the following bugfix patch for a 3rd party machine conf
file I am using:
diff --git a/conf/machine/colibri-vf.conf b/conf/machine/colibri-vf.conf
index 3ddef79..ba47488 100644
---
Suppose I have the following bugfix patch for a 3rd party machine conf
file I am using:
diff --git a/conf/machine/colibri-vf.conf b/conf/machine/colibri-vf.conf
index 3ddef79..ba47488 100644
---
|
By
Bernd <prof7bit@...>
·
#38349
·
|
|
Navigating the layer labyrinth
I am a new user for a few weeks now, trying to make a customized image
for a toradex colibri-vf module, so far I have succeeded in the
following disciplines:
* adding the 3rd party layers that I
I am a new user for a few weeks now, trying to make a customized image
for a toradex colibri-vf module, so far I have succeeded in the
following disciplines:
* adding the 3rd party layers that I
|
By
Bernd <prof7bit@...>
·
#38348
·
|
|
Re: Layer versions at runtime
Hi,
That's easy to do :
do_install_append () {
for layer in ${BBLAYERS}; do
cd $layer
echo -n "$(basename $layer) = " >>
Hi,
That's easy to do :
do_install_append () {
for layer in ${BBLAYERS}; do
cd $layer
echo -n "$(basename $layer) = " >>
|
By
Ayoub Zaki <ayoub.zaki@...>
·
#38347
·
|
|
Layer versions at runtime
I've noticed that bitbake prints the git commit versions of the layers when the build starts.
meta-python = "HEAD:b40116cf457b88a2db14b86fda9627fb34d56ae6"
meta-mender-core =
I've noticed that bitbake prints the git commit versions of the layers when the build starts.
meta-python = "HEAD:b40116cf457b88a2db14b86fda9627fb34d56ae6"
meta-mender-core =
|
By
Alan
·
#38346
·
|
|
Re: How to use same user in two recipes?
Hi Fabien,
Good to know that it helps here.
Submitted the patch to oe-core mailing list today:
http://lists.openembedded.org/pipermail/openembedded-core/2017-October/143288.html
Thanks and
Hi Fabien,
Good to know that it helps here.
Submitted the patch to oe-core mailing list today:
http://lists.openembedded.org/pipermail/openembedded-core/2017-October/143288.html
Thanks and
|
By
Maxin B. John
·
#38345
·
|
|
How do I patch binutils for the SDK
I found a bug in the GNU assembler that makes it produce corrupted
listings, reported it on sourceware bugzilla, and it has been fixed. Now
I'd like to take those small patches and apply them to the
I found a bug in the GNU assembler that makes it produce corrupted
listings, reported it on sourceware bugzilla, and it has been fixed. Now
I'd like to take those small patches and apply them to the
|
By
Paul D. DeRocco
·
#38344
·
|
|
Re: How to use two recipes to satisfy different PROVIDES -- gpu support
Raj,
Thanks for the response.
Is there an example of what you mentioned below which is open source?
So far my two references have been Freescale and Mali. I found mali much simpler than Freescale,
Raj,
Thanks for the response.
Is there an example of what you mentioned below which is open source?
So far my two references have been Freescale and Mali. I found mali much simpler than Freescale,
|
By
Gutierrez, Hernan Ildefonso (Boise R&D, FW) <hernan_gutierrez@...>
·
#38343
·
|
|
Re: [meta-cgl][PATCH 2/2] cgl-common.inc: append SRC_URI for poky-cgl only
By
Jackie Huang
·
#38342
·
|