Re: [yocto] wic create mkhybridiso core-image-minimal failure (honister)

2022-01-14 Thread bgctkd
Solution: I poked around and discovered the primary issue is that I was adding wic, but not cpio.gz to IMAGE_FSTYPES -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#55885): https://lists.yoctoproject.org/g/yocto/message/55885 Mute This Topic: https:

Re: [yocto] [meta-raspberrypi] Problem with RPI_USE_U_BOOT with RaspberryPi4

2022-01-14 Thread Jean-Philippe Lebel
Hello Marc, I doubt this is a manipulation issue (at least in regards to burning the image). meta-raspberrypi master, yocto master -> works (core-image-base, stock, no modification beside RPI_USE_U_BOOT="1") meta-raspberrypi hardknott, yocto hardknott -> doesn't work (core-image-base, stock, no

Re: [yocto] [meta-raspberrypi] Problem with RPI_USE_U_BOOT with RaspberryPi4

2022-01-14 Thread Marc Ferland
On Fri, Jan 14, 2022 at 10:39 AM Jean-Philippe Lebel wrote: > > I finally received my UART cable, giving me more details about where the boot > sequence fails. > > Just a quick summary of my tests > - Enabling UART does indeed "fix" the issue when working from the > meta-raspberrypi AND yocto ma

Re: [yocto] perf compilation fails

2022-01-14 Thread Khem Raj
take a look at following link, it will help solve this hopefully https://wiki.gentoo.org/wiki/Project:Toolchain/Binutils_2.34_porting_notes/undefined_reference_to_bfd_get_section_* On Fri, Jan 14, 2022 at 2:02 AM Michael Opdenacker wrote: > > Hi Jose Antonio > > On 1/13/22 3:29 PM, Cardenas Jose

Re: [yocto] Red alert but apparently harmless setscene errors

2022-01-14 Thread Michael Opdenacker
On 1/13/22 10:53 PM, Richard Purdie wrote: > On Thu, 2022-01-13 at 19:37 +0100, Michael Opdenacker wrote: >> Hi Jose, >> >> Thanks for your advice! >> >> On 1/13/22 6:37 PM, Jose Quaresma wrote: >>> Hi, >>> >>> I've seen the same for some time now when building core-image-minimal >>> with yocto st

Re: [yocto] [OE-core] Question of Yocto dunfell LTS period

2022-01-14 Thread Ross Burton
On Fri, 14 Jan 2022 at 12:41, Zoltan Boszormenyi via lists.yoctoproject.org wrote: > It would also help if recipes staying on the same version > but adding patches for e.g. CVE fixes should increase their > PR value so their rebuilt versions can be put into a package repo. > > Throwing away the bu

Re: [yocto] [meta-raspberrypi] Problem with RPI_USE_U_BOOT with RaspberryPi4

2022-01-14 Thread Jean-Philippe Lebel
I finally received my UART cable, giving me more details about where the boot sequence fails. Just a quick summary of my tests - Enabling UART does indeed "fix" the issue when working from the meta-raspberrypi AND yocto master. - Enabling UART has no impact when working from the meta-raspberrypi a

Re: [yocto] Question of Yocto dunfell LTS period

2022-01-14 Thread Richard Purdie
On Fri, 2022-01-14 at 07:14 +, Matthias Klein wrote: > Hello together, > > I would like to add a question to the topic: > > Why was the LTS period for dunfell extended? > Can we expect the same for kirstone? The project members agreed to fun an extension to the lifetime of dunfell from 2 yea

Re: [yocto] [OE-core] Question of Yocto dunfell LTS period

2022-01-14 Thread Zoltan Boszormenyi via lists.yoctoproject.org
Funny you mention PR. It would also help if recipes staying on the same version but adding patches for e.g. CVE fixes should increase their PR value so their rebuilt versions can be put into a package repo. Throwing away the buildroot (as suggested any time some obscure build error happens) and

Re: [yocto] [meta-zephyr][PATCH v3] meta-zephyr-bsp: Add autogenerated machines.

2022-01-14 Thread Eilís Ní Fhlannagáin
On Thu, 13 Jan 2022 at 23:17, Jon Mason wrote: > > On Wed, Jan 12, 2022 at 8:02 PM Eilís Ní Fhlannagáin wrote: > > > > From: Eilís Ní Fhlannagáin > > > > This commit adds 382 autogenerated machines generated via > > generate-zephyr-machines.bb. These machines have obviously not all been > > test

Re: [yocto] [meta-tensorflow][PATCH 3/3] tensorflow-lite: add recipe

2022-01-14 Thread Julien STEPHAN
Hi Hongxu Did you have a chance to take a look at it? Best Julien Le ven. 24 déc. 2021 à 19:48, Randy MacLeod a écrit : > Thanks Stephan. > > Hongxu, did you miss this? > > ../Randy > > On 2021-12-21 3:42 a.m., Julien STEPHAN wrote: > > Adding 2.6.1 tensorflow-lite recipe. > > This recipe is d

Re: [yocto] perf compilation fails

2022-01-14 Thread Michael Opdenacker
Hi Jose Antonio On 1/13/22 3:29 PM, Cardenas Jose Antonio (JCARDENA) wrote: > > Hi guys > >   > > I’m no table to build correctly perf package. > >   > > It looks like some sources have no been compiled because I’m getting > an “undefined reference to” error. > >   > > This problem has appeared si

Re: [yocto] [OE-core] Question of Yocto dunfell LTS period

2022-01-14 Thread Alexander Kanavin
Actually, I think this was some kind of missed PR opportunity. Regular distros, such as RHEL, Debian and everyone else, are constantly trotting out their support windows as the reason to hand them the job of making products, so we could counter that better perhaps. Alex On Fri, 14 Jan 2022 at 06:

Re: [yocto] Installing specific systemd service file according to selected distro

2022-01-14 Thread Konrad Weihmann
Fairly easy, each distro creates an OVERRIDE by default, so you could do A:poky = "foo.service" A:yourdistro = "bar.service" SYSTEMD_PACKAGES = "${A}" do_install:append() { install -d ${D}${systemd_system_unitdir} install -m 0644 ${WORKDIR}/${A} ${D}${systemd_system_unitdir} }