Re: [yocto] How to add a few lines in config.txt in Yocto project for Raspberry Pi

2023-08-07 Thread Khem Raj
this looks good. So now what kind of error do you see. You might want
to check the build tree of this recipe and see if the patch is applied
in S

On Mon, Aug 7, 2023 at 7:36 PM Crane  wrote:
>
> The recipe append name I used is rpi-config_git.bbappend.
> It is placed in meta-custom/recipes-bsp/bootfiles/
>
> The layer conf of the custom layer is like this:
> # We have a conf and classes directory, add to BBPATH
> BBPATH .= ":${LAYERDIR}"
> # We have recipes-* directories, add to BBFILES
> BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
> ${LAYERDIR}/recipes-*/*/*.bbappend"
> BBFILE_COLLECTIONS += "meta-farview"
> BBFILE_PATTERN_meta-farview = "^${LAYERDIR}/"
> BBFILE_PRIORITY_meta-farview = "19"
> LAYERDEPENDS_meta-farview = "core"
> LAYERSERIES_COMPAT_meta-farview = "kirkstone"
>
>
> 
>

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#60732): https://lists.yoctoproject.org/g/yocto/message/60732
Mute This Topic: https://lists.yoctoproject.org/mt/100614184/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [yocto] How to add a few lines in config.txt in Yocto project for Raspberry Pi

2023-08-07 Thread Crane
The recipe append name I used is rpi-config_git.bbappend.
It is placed in meta-custom/recipes-bsp/bootfiles/

The layer conf of the custom layer is like this:
# We have a conf and classes directory, add to BBPATH
BBPATH .= ":${LAYERDIR}"
# We have recipes-* directories, add to BBFILES
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
${LAYERDIR}/recipes-*/*/*.bbappend"
BBFILE_COLLECTIONS += "meta-farview"
BBFILE_PATTERN_meta-farview = "^${LAYERDIR}/"
BBFILE_PRIORITY_meta-farview = "19"
LAYERDEPENDS_meta-farview = "core"
LAYERSERIES_COMPAT_meta-farview = "kirkstone"

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#60731): https://lists.yoctoproject.org/g/yocto/message/60731
Mute This Topic: https://lists.yoctoproject.org/mt/100614184/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [yocto] How to add a few lines in config.txt in Yocto project for Raspberry Pi

2023-08-07 Thread Khem Raj
On Mon, Aug 7, 2023 at 6:50 PM Crane  wrote:
>
> Thanks Raj for your quick reply.
>
> For config.txt, the recipe I am referring to is rpi-config_git.bb in 
> meta-respberrypi layer. This is the one I am testing now.
>
> Further on, I will add recipe appends for rpi-cmdline.bb.
> To change /etc/inittab, I still need to find which recipe to append.
>

what is the name you are using for bbappend ? secondly what does your
layer.conf look like for this custom layer ?

> Thanks!
> Crane
>
> 
>

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#60730): https://lists.yoctoproject.org/g/yocto/message/60730
Mute This Topic: https://lists.yoctoproject.org/mt/100614184/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [yocto] How to add a few lines in config.txt in Yocto project for Raspberry Pi

2023-08-07 Thread Crane
Thanks Raj for your quick reply.

For config.txt, the recipe I am referring to is rpi-config_git.bb in 
meta-respberrypi layer. This is the one I am testing now.

Further on, I will add recipe appends for rpi-cmdline.bb.
To change /etc/inittab, I still need to find which recipe to append.

Thanks!
Crane

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#60729): https://lists.yoctoproject.org/g/yocto/message/60729
Mute This Topic: https://lists.yoctoproject.org/mt/100614184/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [yocto] How to add a few lines in config.txt in Yocto project for Raspberry Pi

2023-08-07 Thread Khem Raj
On Mon, Aug 7, 2023 at 6:29 PM Crane  wrote:
>
> Hello,
>
> I would like to write a .bbappend for config.txt, cmdline.txt and 
> /etc/inittab in my custom layer to make some changes.
>
> The recipe append for config.txt is created like this:
> FILESEXTRAPATHS:prepend := "$(THISDIR)/files:"
> SRC_URI += "file://rpi-config.patch"
>
> The paths of the recipe and patch are in the custom layer's bblayer.conf.
> But Bitbake doesn't search the custom layer for the recipe append.
>
> Is it a proper way to do that? If yes, what might be missing in the 
> configuration?
>

yes, however, which recipe are you referring to?

> Thanks!
> Crane
>
>
>
>
>
>
> 
>

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#60728): https://lists.yoctoproject.org/g/yocto/message/60728
Mute This Topic: https://lists.yoctoproject.org/mt/100614184/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] How to add a few lines in config.txt in Yocto project for Raspberry Pi

2023-08-07 Thread Crane
Hello,

I would like to write a .bbappend for config.txt, cmdline.txt and /etc/inittab 
in my custom layer to make some changes.

The recipe append for config.txt is created like this:
FILESEXTRAPATHS:prepend := "$(THISDIR)/files:"
SRC_URI += "file://rpi-config.patch"

The paths of the recipe and patch are in the custom layer's bblayer.conf.
But Bitbake doesn't search the custom layer for the recipe append.

Is it a proper way to do that? If yes, what might be missing in the 
configuration?

Thanks!
Crane

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#60727): https://lists.yoctoproject.org/g/yocto/message/60727
Mute This Topic: https://lists.yoctoproject.org/mt/100614184/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] M+ & H bugs with Milestone Movements WW31

2023-08-07 Thread Stephen Jolley
All,

YP M+ or high bugs which moved to a new milestone in WW31 are listed below:
Priority Bug ID Short Description Changer Owner Was Became
Medium+ 12688 
yocto-check-layer
should allow PV changes randy.macl...@windriver.com
michael.opdenac...@bootlin.com 4.99 4.3 M4
14876  rust:
Improve reproducibility patch randy.macl...@windriver.com
yash.shi...@windriver.com 4.0.13 4.3 M3
14905  Error in
compiling rustfmt does not cause do_compile to fail
randy.macl...@windriver.com yash.shi...@windriver.com 4.0.13 4.3 M4
15104  patching
path for cargo based recipe don't work with virtual manifest
randy.macl...@windriver.com frederic.martins...@gmail.com 4.99 4.3 M3
15173  AB-INT:
bitbake timeout randy.macl...@windriver.com
richard.pur...@linuxfoundation.org 0.0.0 4.3 M4
15174  The
postinstall intercept hook 'update_font_cache' failed
randy.macl...@windriver.com anuj.mit...@intel.com 0.0.0 4.0.13

Thanks,



*Stephen K. Jolley*

*Yocto Project Program Manager*

(*Cell*:(208) 244-4460

* *Email*: *s
jolley.yp...@gmail.com *

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#60726): https://lists.yoctoproject.org/g/yocto/message/60726
Mute This Topic: https://lists.yoctoproject.org/mt/100607575/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] Enhancements/Bugs closed WW31!

2023-08-07 Thread Stephen Jolley
All,

The below were the owners of enhancements or bugs closed during the last
week!
Who Count
randy.macl...@windriver.com 2
yoann.con...@smile.fr 1
st...@sakoman.com 1
Grand Total 4

Thanks,



*Stephen K. Jolley*

*Yocto Project Program Manager*

(*Cell*:(208) 244-4460

* *Email*: *s
jolley.yp...@gmail.com *

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#60725): https://lists.yoctoproject.org/g/yocto/message/60725
Mute This Topic: https://lists.yoctoproject.org/mt/100607415/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] Current high bug count owners for Yocto Project 4.3

2023-08-07 Thread Stephen Jolley
All,

Below is the list of top 31 bug owners as of the end of WW31 of who have
open medium or higher bugs and enhancements against YP 4.3. There are 57
possible work days left until the final release candidates for YP 4.3 needs
to be released.
Who Count
ross.bur...@arm.com 34
michael.opdenac...@bootlin.com 33
richard.pur...@linuxfoundation.org 25
david.re...@windriver.com 23
randy.macl...@windriver.com 22
bruce.ashfi...@gmail.com 22
jpewhac...@gmail.com 10
pa...@zhukoff.net 7
sundeep.kokko...@windriver.com 5
sakib.sa...@windriver.com 5
pi...@pidge.org 4
yash.shi...@windriver.com 3
tim.orl...@konsulko.com 3
alexis.loth...@bootlin.com 3
jon.ma...@arm.com 2
yoann.con...@smile.fr 1
tvgamb...@gmail.com 1
thr...@amazon.de 1
thomas.per...@bootlin.com 1
sundeep.kokko...@gmail.com 1
pokyli...@reliableembeddedsystems.com 1
p.lob...@welotec.com 1
martin.ja...@gmail.com 1
mark.ha...@kernel.crashing.org 1
mark.asselst...@windriver.com 1
louis.ran...@syslinbit.com 1
jens.ge...@desy.de 1
frederic.martins...@gmail.com 1
fathi.bou...@linaro.org 1
alexandre.bell...@bootlin.com 1
alejan...@enedino.org 1
Grand Total 217

Thanks,



*Stephen K. Jolley*

*Yocto Project Program Manager*

(*Cell*:(208) 244-4460

* *Email*: *s
jolley.yp...@gmail.com *

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#60724): https://lists.yoctoproject.org/g/yocto/message/60724
Mute This Topic: https://lists.yoctoproject.org/mt/100478822/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] Yocto Project Newcomer & Unassigned Bugs - Help Needed

2023-08-07 Thread Stephen Jolley
All,
>
>

> The triage team is starting to try and collect up and classify bugs which
a newcomer to the project would be able to work on in a way which means
people can find them. They're being listed on the triage page under the
appropriate heading:

> https://wiki.yoctoproject.org/wiki/Bug_Triage#Newcomer_Bugs  Also please
review:
https://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded and
how to create a bugzilla account at:
https://bugzilla.yoctoproject.org/createaccount.cgi

> The idea is these bugs should be straight forward for a person to help
work on who doesn't have deep experience with the project.  If anyone can
help, please take ownership of the bug and send patches!  If anyone needs
help/advice there are people on irc who can likely do so, or some of the
more experienced contributors will likely be happy to help too.

>

> Also, the triage team meets weekly and does its best to handle the bugs
reported into the Bugzilla. The number of people attending that meeting has
fallen, as have the number of people available to help fix bugs. One of the
things we hear users report is they don't know how to help. We (the triage
team) are therefore going to start reporting out the currently 433
unassigned or newcomer bugs.

>

> We're hoping people may be able to spare some time now and again to help
out with these.  Bugs are split into two types, "true bugs" where things
don't work as they should and "enhancements" which are features we'd want
to add to the system.  There are also roughly four different "priority"
classes right now,  “4.3”, “4.4”, "4.99" and "Future", the more
pressing/urgent issues being in "4.3" and then “4.4”.

>

> Please review this link and if a bug is something you would be able to
help with either take ownership of the bug, or send me (
sjolley.yp...@gmail.com) an e-mail with the bug number you would like and I
will assign it to you (please make sure you have a Bugzilla account).  The
list is at:
https://wiki.yoctoproject.org/wiki/Bug_Triage_Archive#Unassigned_or_Newcomer_Bugs

>

> Thanks,

>

> *Stephen K. Jolley*
*Yocto Project Program Manager*
(*Cell*:(208) 244-4460
* *Email*:  *sjolley.yp...@gmail.com *

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#60723): https://lists.yoctoproject.org/g/yocto/message/60723
Mute This Topic: https://lists.yoctoproject.org/mt/100336900/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [yocto] Timescaledb-toolkit issue #rust

2023-08-07 Thread Alexander Kanavin
meta-rust and cargo bitbake are both obsolete.

Please retry with a plain poky master checkout, and if something in
the recipe fails, we need to see the failure log and the complete
recipe as well, to be able to help.

Alex

On Mon, 7 Aug 2023 at 09:07,  wrote:
>
> Hello,
>
> I'm trying to add a recipe for timebasedb-toolkit from 
> https://github.com/timescale/timescaledb-toolkit , but I'm not very 
> experienced with Rust.
>
> I added meta-rust (just to have configuration for Rust 1.66.1) and installed 
> cargo-bitbake. I successfully generated the base recipe and tried to build 
> it. However it fails in the do_compile step.
>
> Before building the package, this configuration is required:
>
> cargo install --version '=0.9.7' --force cargo-pgrx
>
> cargo pgrx init --pg14 pg_config
>
>
>
> However, I don't know how to implement such "pre-configuration" to the 
> recipe. Tried to add the commands in do_compile:prepend() and also re-writing 
> the do_compile inserting those commands without luck.
>
> Any hint?
>
> I'm using Kirkstore, Raspberrypi CM4 platform, 64bit
>
> Thank you very much
>
>
> 
>

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#60722): https://lists.yoctoproject.org/g/yocto/message/60722
Mute This Topic: https://lists.yoctoproject.org/mt/100595227/21656
Mute #rust:https://lists.yoctoproject.org/g/yocto/mutehashtag/rust
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] Timescaledb-toolkit issue #rust

2023-08-07 Thread dini . michele
Hello,

I'm trying to add a recipe for timebasedb-toolkit from 
https://github.com/timescale/timescaledb-toolkit , but I'm not very experienced 
with Rust.

I added meta-rust (just to have configuration for Rust 1.66.1) and installed 
cargo-bitbake. I successfully generated the base recipe and tried to build it. 
However it fails in the do_compile step.

Before building the package, this configuration is required:

cargo install --version '=0.9.7' --force cargo-pgrx

cargo pgrx init --pg14 pg_config

However, I don't know how to implement such "pre-configuration" to the recipe. 
Tried to add the commands in do_compile:prepend() and also re-writing the 
do_compile inserting those commands without luck.

Any hint?

I'm using Kirkstore, Raspberrypi CM4 platform, 64bit

Thank you very much

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#60721): https://lists.yoctoproject.org/g/yocto/message/60721
Mute This Topic: https://lists.yoctoproject.org/mt/100595227/21656
Mute #rust:https://lists.yoctoproject.org/g/yocto/mutehashtag/rust
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-