Re: [yocto] Register out-of-tree fetcher with devtool

2023-06-04 Thread Weihmann, Konrad (Avnet Embedded)
> -Original Message- > From: Richard Purdie > Sent: Sonntag, 4. Juni 2023 14:52 > To: Weihmann, Konrad (Avnet Embedded) ; > yocto@lists.yoctoproject.org > Subject: [External]Re: [yocto] Register out-of-tree fetcher with devtool > > On Fri, 2023-06-02 at 04:47

Re: [yocto] Register out-of-tree fetcher with devtool

2023-06-04 Thread Richard Purdie
On Fri, 2023-06-02 at 04:47 +, Weihmann, Konrad (Avnet Embedded) wrote: > > > > Hi all, >   > we do have an out-of-tree fetcher that I would like to make use of > with devtool, for instance for upgrade checking. > Within our recipes the fetcher is registered by this workaround > > python

Re: [yocto] Register out-of-tree fetcher with devtool

2023-06-04 Thread Weihmann, Konrad (Avnet Embedded)
> -Original Message- > From: adrian.freiho...@gmail.com > Sent: Freitag, 2. Juni 2023 22:11 > To: Weihmann, Konrad (Avnet Embedded) ; > yocto@lists.yoctoproject.org > Subject: [External]Re: [yocto] Register out-of-tree fetcher with devtool > > On Fri, 2

Re: [yocto] Register out-of-tree fetcher with devtool

2023-06-02 Thread Adrian Freihofer
On Fri, 2023-06-02 at 04:47 +, Weihmann, Konrad (Avnet Embedded) wrote: > > > > Hi all, >   > we do have an out-of-tree fetcher that I would like to make use of > with devtool, for instance for upgrade checking. > Within our recipes the fetcher is registered by this workaround > > python

[yocto] Register out-of-tree fetcher with devtool

2023-06-01 Thread Weihmann, Konrad (Avnet Embedded)
Hi all, we do have an out-of-tree fetcher that I would like to make use of with devtool, for instance for upgrade checking. Within our recipes the fetcher is registered by this workaround python () { import foo bb.fetch2.methods.append(foo.FooFetcher()) } Which isn't the nicest