[OE-core] [PATCH] devshell.bbclass: Exceptions displayed within devpyshell

2021-03-18 Thread Dorinda
From: Dorinda Bassey If you type something into devpyshell, an exception should be triggered, but that exception isn't printed out because it is not being flushed out of the buffer. This patch fixes that issue. [YOCTO #12156] Signed-off-by: Dorinda Bassey --- meta/classes/devshell.bbclass

[OE-core] [PATCH] meta-selftest: Add HOMEPAGE / DESCRIPTION

2021-03-15 Thread Dorinda
From: Dorinda Bassey Added HOMEPAGE and DESCRIPTION for recipes with missing descriptions or homepage. Signed-off-by: Dorinda Bassey --- meta-selftest/recipes-test/aspell/aspell_0.0.0.1.bb | 1 + .../recipes-test/git-submodule-test/git-submodule-test.bb| 1 + 2 files

[OE-core] [PATCH v3][RFC] distrodata.py: Test to track recipes without HOMEPAGE or DESCRIPTION

2021-03-14 Thread Dorinda
From: Dorinda Bassey This test is to keep track of recipes that do not have a HOMEPAGE or DESCRIPTION, with exceptions to recipes whose SRC_URI are not linked to external sources. Results of this test: it take about 2 to 3 minutes for this test to complete execution depending on the laptop

Re: [OE-core] [PATCH v2][RFC] distrodata.py: Test to track recipes without HOMEPAGE or DESCRIPTION

2021-03-12 Thread Dorinda
Alright, I get you. Will send a v3 RFC. Thanks, Dorinda. On Fri, Mar 12, 2021 at 3:11 AM Randy MacLeod wrote: > On 2021-03-08 4:12 p.m., Dorinda wrote: > > This test is to keep track of recipes that do not have a HOMEPAGE or > DESCRIPTION, > > with exceptions to rec

[OE-core] [PATCH v2] meta/recipes-devtools: Add HOMEPAGE / DESCRIPTION

2021-03-10 Thread Dorinda
From: Dorinda Bassey Added missing HOMEPAGE and DESCRIPTION found using the test command `oe-selftest -r distrodata.Distrodata.test_missing_homepg` [YOCTO #13471] Signed-off-by: Dorinda Bassey --- v2: removed DESCRIPTION that was not necessary meta/recipes-devtools/python/python-cython.inc

Re: [OE-core] [PATCH 1/5] meta/recipes-devtools: Add HOMEPAGE / DESCRIPTION

2021-03-09 Thread Dorinda
Yes I agree, > +DESCRIPTION = "${SUMMARY}" I was actually contemplating this before. Thanks, Dorinda. On Tue, Mar 9, 2021, 17:47 Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > On Tue, 2021-03-09 at 12:35 +0100, Dorinda wrote: > > Added missing HO

[OE-core] [PATCH 5/5] meta/recipes-graphics: Add HOMEPAGE / DESCRIPTION

2021-03-09 Thread Dorinda
Added missing HOMEPAGE and DESCRIPTION found using the test command `oe-selftest -r distrodata.Distrodata.test_missing_homepg` [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/recipes-graphics/ttf-fonts/ttf-bitstream-vera_1.10.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta

[OE-core] [PATCH 4/5] meta/recipes-multimedia: Add HOMEPAGE / DESCRIPTION

2021-03-09 Thread Dorinda
Added missing HOMEPAGE and DESCRIPTION found using the test command `oe-selftest -r distrodata.Distrodata.test_missing_homepg` [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.18.3.bb | 1 + 1 file changed, 1 insertion(+) diff --git

[OE-core] [PATCH 3/5] meta/recipes-kernel: Add HOMEPAGE / DESCRIPTION

2021-03-09 Thread Dorinda
Added missing HOMEPAGE and DESCRIPTION found using the test command `oe-selftest -r distrodata.Distrodata.test_missing_homepg` [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/recipes-kernel/linux-firmware/linux-firmware_20210208.bb | 1 + meta/recipes-kernel/linux-libc-headers/linux-libc

[OE-core] [PATCH 2/5] meta/recipes-support: Add HOMEPAGE / DESCRIPTION

2021-03-09 Thread Dorinda
Added missing HOMEPAGE and DESCRIPTION found using the test command `oe-selftest -r distrodata.Distrodata.test_missing_homepg` [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/recipes-support/boost/boost-build-native_4.3.0.bb | 2 ++ meta/recipes-support/lz4/lz4_1.9.3.bb

[OE-core] [PATCH 1/5] meta/recipes-devtools: Add HOMEPAGE / DESCRIPTION

2021-03-09 Thread Dorinda
Added missing HOMEPAGE and DESCRIPTION found using the test command `oe-selftest -r distrodata.Distrodata.test_missing_homepg` [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/recipes-devtools/python/python-cython.inc | 2 ++ meta/recipes-devtools/python/python3

[OE-core] [PATCH v2][RFC] distrodata.py: Test to track recipes without HOMEPAGE or DESCRIPTION

2021-03-08 Thread Dorinda
From: Dorinda Bassey This test is to keep track of recipes that do not have a HOMEPAGE or DESCRIPTION, with exceptions to recipes whose SRC_URI are not linked to external sources. [YOCTO #13471] Signed-off-by: Dorinda Bassey --- v2: -Changed PN to BPN -Used set() instead of lists -Changed

Re: [OE-core] [RFC] distrodata.py: Test to track recipes without HOMEPAGE or DESCRIPTION

2021-03-06 Thread Dorinda
isn't mandatory IMO (or the styleguide needs to be updated) I now see why I didn't get reports on recipes without DESCRIPTION. Thanks, Dorinda. On Sat, Mar 6, 2021, 22:10 Konrad Weihmann wrote: > some nitpick below > > On 06.03.21 21:53, Dorinda wrote: > > [YOCTO #13471] >

[OE-core] [RFC] distrodata.py: Test to track recipes without HOMEPAGE or DESCRIPTION

2021-03-06 Thread Dorinda
This test is to keep track of recipes that do not have a HOMEPAGE or DESCRIPTION, with exceptions to recipes whose SRC_URI are not linked to external sources. [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/lib/oeqa/selftest/cases/distrodata.py | 34 ++ 1 file

[OE-core] [PATCH 3/3] meta/recipes-extended: Add HOMEPAGE / DESCRIPTION

2021-03-02 Thread Dorinda
Added HOMEPAGE and DESCRIPTION for recipes with missing decriptions or homepage [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/recipes-extended/bash/bash.inc| 1 + meta/recipes-extended/bc/bc_1.07.1.bb | 1 + meta/recipes-extended

[OE-core] [PATCH 2/3] meta-skeleton: Add HOMEPAGE / DESCRIPTION

2021-03-02 Thread Dorinda
Added HOMEPAGE and DESCRIPTION for recipes with missing decriptions or homepage [YOCTO #13471] Signed-off-by: Dorinda Bassey --- .../baremetal-examples/baremetal-helloworld_git.bb | 1 + meta-skeleton/recipes-kernel/hello-mod/hello-mod_0.1.bb| 1 + meta-skeleton/recipes

[OE-core] [PATCH 1/3] meta/recipes-rt: Add HOMEPAGE / DESCRIPTION

2021-03-02 Thread Dorinda
Added HOMEPAGE and DESCRIPTION for recipes with missing decriptions or homepage [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/recipes-rt/rt-tests/rt-tests_1.10.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/recipes-rt/rt-tests/rt-tests_1.10.bb b/meta

[OE-core] [PATCH] binutils: add PACKAGECONFIG for debuginfod

2021-03-01 Thread Dorinda
Added PACKAGECONFIG for debuginfod Signed-off-by: Dorinda Bassey --- meta/recipes-devtools/binutils/binutils_2.36.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-devtools/binutils/binutils_2.36.bb b/meta/recipes-devtools/binutils/binutils_2.36.bb index f316eb8d1c

[OE-core] [PATCH] scripts/oe-debuginfod: script that fetches package manager directory

2021-03-01 Thread Dorinda
Added a script that fetches the package manager directory and runs the elfutils-native debuginfod on DEPLOY_DIR Added a check to ensure that PACKAGECONFIG options is set in local.conf Signed-off-by: Dorinda Bassey --- scripts/oe-debuginfod | 31 +++ 1 file changed

[OE-core] [PATCH 4/4] meta/recipes-devtools: Add HOMEPAGE / DESCRIPTION

2021-02-24 Thread Dorinda
Added HOMEPAGE and DESCRIPTION for recipes with missing decriptions or homepage [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/recipes-devtools/apt/apt_1.8.2.2.bb | 2 ++ meta/recipes-devtools/cdrtools/cdrtools-native_3.01.bb | 1 + meta/recipes-devtools/dejagnu

[OE-core] [PATCH 3/4] meta/recipes-core: Add HOMEPAGE / DESCRIPTION

2021-02-24 Thread Dorinda
Added HOMEPAGE and DESCRIPTION for recipes with missing decriptions or homepage [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/recipes-core/base-passwd/base-passwd_3.5.29.bb | 1 + meta/recipes-core/dbus-wait/dbus-wait_git.bb| 1 + meta/recipes-core/dropbear/dropbear.inc

[OE-core] [PATCH 2/4] meta/recipes-connectivity: Add HOMEPAGE / DESCRIPTION

2021-02-24 Thread Dorinda
Added HOMEPAGE and DESCRIPTION for recipes with missing decriptions or homepage [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/recipes-connectivity/bind/bind_9.16.11.bb | 1 + meta/recipes-connectivity/libnss-mdns/libnss-mdns_0.14.1.bb | 1 + meta/recipes

[OE-core] [PATCH 1/4] meta/recipes-bsp: Add HOMEPAGE / DESCRIPTION

2021-02-24 Thread Dorinda
Added HOMEPAGE and DESCRIPTION for recipes with missing decriptions or homepage [YOCTO #13471] Signed-off-by: Dorinda Bassey --- meta/recipes-bsp/gnu-efi/gnu-efi_3.0.12.bb | 1 + meta/recipes-bsp/opensbi/opensbi_0.9.bb| 1 + meta/recipes-bsp/v86d/v86d_0.1.10.bb | 1 + 3 files changed

[OE-core] [PATCH] gdb-common.inc: add PACKAGECONFIG for debuginfod

2021-02-24 Thread Dorinda
Added PACKAGECONFIG for debuginfod Signed-off-by: Dorinda Bassey --- meta/recipes-devtools/gdb/gdb-common.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-devtools/gdb/gdb-common.inc b/meta/recipes-devtools/gdb/gdb-common.inc index bfb8013d67..ccc911592c 100644 --- a/meta

Re: [OE-core] [PATCH v2] oe-pkgdata-util: Check if environment script is initialized

2021-02-08 Thread Dorinda
Hi Richard, I checked devtool and recipetool, they have checks in place that errors out immediately if executed without initializing oe-init-build-env script. However, I'm unsure about this: I'm wondering if there should be a check inside tinfoil itself? Thanks and Regards, Dorinda. On Feb 8

Re: [OE-core] [PATCH v2] oe-pkgdata-util: Check if environment script is initialized

2021-02-07 Thread Dorinda
Hi Everyone, Just a friendly reminder to review this patch. Thanks, Dorinda. On Feb 1, 2021 3:46 PM, "dorindabassey" wrote: > Tinfoil doesn't behave well if environment is not initialized, this check > ensures a proper error log if environment is not initialized. > > [YO

[OE-core] [PATCH v2] oe-pkgdata-util: Check if environment script is initialized

2021-02-01 Thread Dorinda
Tinfoil doesn't behave well if environment is not initialized, this check ensures a proper error log if environment is not initialized. [YOCTO #12096] Signed-off-by: Dorinda Bassey --- v2: -Positioned check under a condition when it cannot determine the pkgdata_dir scripts/oe-pkgdata-util

[OE-core] [PATCH] oe-pkgdata-util: Check if environment script is initialized

2021-01-31 Thread Dorinda
Tinfoil doesn't behave well if environment is not initialised, this check ensures a proper error log if environment is not initialzed. [YOCTO #12096] Signed-off-by: Dorinda Bassey --- scripts/oe-pkgdata-util | 5 + 1 file changed, 5 insertions(+) diff --git a/scripts/oe-pkgdata-util b

[OE-core] [PATCH v4] sanity.bbclass: Check if PSEUDO_IGNORE_PATHS and paths under pseudo control overlap

2021-01-31 Thread Dorinda
Added a sanity check for when PSEUDO_IGNORE_PATHS and paths under pseudo control overlap to avoid random failures generated. [YOCTO #14193] Signed-off-by: Dorinda Bassey --- v4: -Edited pseudocontroldir variable -Changed error log meta/classes/sanity.bbclass | 10 ++ 1 file changed

Re: [OE-core] [PATCH v3] sanity.bbclass: check if PSEUDO_IGNORE_PATHS and paths under pseudo control overlap

2021-01-31 Thread Dorinda
I agree. Thanks for the helpful hints here, will be more thorough in future patches :) Thanks, Dorinda On Jan 31, 2021 22:50, "Richard Purdie" wrote: On Sun, 2021-01-31 at 14:26 -0500, Dorinda wrote: > > +# Check if PSEUDO_IGNORE_PATHS and and paths under pseudo

Re: [OE-core] [PATCH v2] sanity.bbclass: check if PSEUDO_IGNORE_PATHS and ${S} overlap

2021-01-31 Thread Dorinda
Alright, I understand Thanks. I've added the directories under pseudo control and sent a v3 patch to the list. Thanks, Dorinda. On Jan 30, 2021 12:01, "Richard Purdie" wrote: On Thu, 2021-01-28 at 20:51 +0100, Dorinda wrote: > added a sanity check for when PSEUDO_IGNORE_PATHS and

[OE-core] [PATCH v3] sanity.bbclass: check if PSEUDO_IGNORE_PATHS and paths under pseudo control overlap

2021-01-31 Thread Dorinda
added a sanity check for when PSEUDO_IGNORE_PATHS and paths under pseudo control overlap to avoid random failures generated. [YOCTO #14193] Signed-off-by: Dorinda Bassey --- v3: changed commit log changed the conditional statement for sanity check meta/classes/sanity.bbclass | 10

Re: [OE-core] [PATCH v2] sanity.bbclass: check if PSEUDO_IGNORE_PATHS and ${S} overlap

2021-01-28 Thread Dorinda
This patch won't be necessary as the previous patch here https://listshanks.openembedded.org/g/openembedded-core/message/147238?p=,,,20,0,0,0::Created,,verify+that+user,20,2,0,80117826 would detect it. Thanks, Dorinda On Jan 28, 2021 20:51, "dorindabassey" wrote: > added a

[OE-core] [PATCH v2] sanity.bbclass: check if PSEUDO_IGNORE_PATHS and ${S} overlap

2021-01-28 Thread Dorinda
added a sanity check for when PSEUDO_IGNORE_PATHS and ${S} overlap to avoid random failures generated. [YOCTO #14193] Signed-off-by: Dorinda Bassey --- v2: added a condition for when {WORKDIR}={S} meta/classes/sanity.bbclass | 10 ++ 1 file changed, 10 insertions(+) diff --git

Re: [OE-core] [PATCH] sanity.bbclass: check if PSEUDO_IGNORE_PATHS and ${S} overlap

2021-01-28 Thread Dorinda
Hmm, thanks for spotting this, I think that was an oversight on my part. IMHO i think this patch should apply to cases where {WORKDIR} = {S}. so i'll make some changes to the patch soon. Thanks, Dorinda. On Wed, Jan 27, 2021 at 6:44 PM Tomasz Dziendzielski < tomasz.dziendziel...@gmail.com>

[OE-core] [PATCH] sanity.bbclass: check if PSEUDO_IGNORE_PATHS and ${S} overlap

2021-01-27 Thread Dorinda
added a sanity check for when PSEUDO_IGNORE_PATHS and ${S} overlap to avoid random failures generated. [YOCTO #14193] Signed-off-by: Dorinda Bassey --- meta/classes/sanity.bbclass | 8 1 file changed, 8 insertions(+) diff --git a/meta/classes/sanity.bbclass b/meta/classes

[OE-core] [PATCH v5] elfutils: split libdebuginfod into its own package

2021-01-27 Thread Dorinda
Added package options for libdebuginfod. Added GPLv2+ | LGPLv3+ license for libdebuginfod with reference to https://sourceware.org/git/?p=elfutils.git;a=blob;f=debuginfod/debuginfod-client.c;h=de26af5bb26e187b51d9ea00d5826e199a96d01a;hb=HEAD [YOCTO #13807] Signed-off-by: Dorinda Bassey --- v5

[OE-core] [PATCH v4] elfutils: split libdebuginfod into its own package

2021-01-27 Thread Dorinda
Added package options for libdebuginfod. Added GPLv2+ | LGPLv3+ license for libdebuginfod with reference to https://sourceware.org/git/?p=elfutils.git;a=blob;f=debuginfod/debuginfod-client.c;h=de26af5bb26e187b51d9ea00d5826e199a96d01a;hb=HEAD [YOCTO #13807] Signed-off-by: Dorinda Bassey --- v4

[OE-core] [PATCH v3 3/3] elfutils: add support for ipkg

2021-01-26 Thread Dorinda
debuginfod scanner 0.182 could only support RPM and scan .debs, it can now scan .ipk [YOCTO #13807] Signed-off-by: Dorinda Bassey --- .../elfutils/elfutils_0.182.bb| 1 + ...d-support-for-ipkg-to-debuginfod.cxx.patch | 32 +++ 2 files changed, 33 insertions

[OE-core] [PATCH v3 2/3] elfutils: add PACKAGECONFIG for debuginfod

2021-01-26 Thread Dorinda
removed the config option that disabled debuginfod and enabled it with PACKAGECONFIG [YOCTO #13807] Signed-off-by: Dorinda Bassey --- meta/recipes-devtools/elfutils/elfutils_0.182.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/recipes-devtools/elfutils

[OE-core] [PATCH v3 1/3] elfutils: split libdebuginfod into its own package

2021-01-26 Thread Dorinda
Added package options for libdebuginfod. Added GPLv2+ | LGPLv3+ license for libdebuginfod with reference to https://sourceware.org/git/?p=elfutils.git;a=blob;f=debuginfod/debuginfod-client.c;h=de26af5bb26e187b51d9ea00d5826e199a96d01a;hb=HEAD [YOCTO #13807] Signed-off-by: Dorinda Bassey --- v3

[OE-core] [PATCH 1/2] sanity.bbclass: sanity check for if bitbake is present in PATH

2021-01-25 Thread Dorinda
a warning message. [YOCTO #13822] Signed-off-by: Dorinda Bassey --- meta/classes/sanity.bbclass | 5 + 1 file changed, 5 insertions(+) diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index d134b40a87..e527c13746 100644 --- a/meta/classes/sanity.bbclass +++ b/meta

[OE-core] [PATCH] sanity.bbclass: verify that user isn't building in PSEUDO_IGNORE_PATHS

2021-01-25 Thread Dorinda
If a user builds in a path in PSEUDO_IGNORE_PATHS, random failures are generated. Hence this patch adds a sanity check in sanity.bbclass to ensure that a user isn't building in PSEUDO_IGNORE_PATHS. [YOCTO #14179] Signed-off-by: Dorinda Bassey --- meta/classes/sanity.bbclass | 7 +++ 1

[OE-core] [PATCH] sanity.bbclass: verify that user isn't building in PSEUDO_IGNORE_PATHS

2021-01-25 Thread Dorinda
If a user builds in a path in PSEUDO_IGNORE_PATHS, random failures are generated. Hence this patch adds a sanity check in sanity.bbclass to ensure that a user isn't building in PSEUDO_IGNORE_PATHS. [YOCTO #14179] Signed-off-by: Dorinda Bassey --- meta/classes/sanity.bbclass | 7 +++ 1

Re: [OE-core] [PATCH] sanity.bbclass: verify that user isn't building in PSEUDO_IGNORE_PATHS

2021-01-25 Thread Dorinda
Apologies please disregard this code, the update I made against this patch didn't reflect. On Jan 25, 2021 23:48, "dorindabassey" wrote: > added a check to ensure that a user isn't building in PSEUDO_IGNORE_PATHS > > Signed-off-by: Dorinda Bassey > --- > meta/c

Re: [OE-core] [PATCH 5/5] sanity.bbclass: verify that user isn't building in PSEUDO_IGNORE_PATHS

2021-01-25 Thread Dorinda
Thanks for the feedbacks, will update the patch. Dorinda On Jan 25, 2021 3:58 PM, "Peter Kjellerstedt" wrote: > > -Original Message- > > From: openembedded-core@lists.openembedded.org > c...@lists.openembedded.org> On Behalf Of Quentin Schulz > &g

[OE-core] [PATCH] sanity.bbclass: verify that user isn't building in PSEUDO_IGNORE_PATHS

2021-01-25 Thread Dorinda
added a check to ensure that a user isn't building in PSEUDO_IGNORE_PATHS Signed-off-by: Dorinda Bassey --- meta/classes/sanity.bbclass | 7 +++ 1 file changed, 7 insertions(+) diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 2040b48595..78c0343f0d 100644

[OE-core] [PATCH 5/5] sanity.bbclass: verify that user isn't building in PSEUDO_IGNORE_PATHS

2021-01-24 Thread Dorinda
added a check to ensure that a user isn't building in PSEUDO_IGNORE_PATHS Signed-off-by: Dorinda Bassey --- meta/classes/sanity.bbclass | 7 +++ 1 file changed, 7 insertions(+) diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 2040b48595..78c0343f0d 100644

[OE-core] [PATCH 4/5] sanity.bbclass: sanity check for bitbake in PATH

2021-01-24 Thread Dorinda
added a sanity check to verify if bitbake is present in PATH Fixes: https://bugzilla.yoctoproject.org/show_bug.cgi?id=13822# Signed-off-by: Dorinda Bassey --- meta/classes/sanity.bbclass | 5 + 1 file changed, 5 insertions(+) diff --git a/meta/classes/sanity.bbclass b/meta/classes

[OE-core] [PATCH 3/5] elfutils: add support for ipkg

2021-01-24 Thread Dorinda
debuginfod scanner 0.181 could only support RPM and scan .debs, it can now scan .ipk Signed-off-by: Dorinda Bassey --- .../elfutils/elfutils_0.182.bb| 1 + ...d-support-for-ipkg-to-debuginfod.cxx.patch | 32 +++ 2 files changed, 33 insertions(+) create mode

[OE-core] [PATCH 2/5] elfutils: add PACKAGECONFIG for debuginfod

2021-01-24 Thread Dorinda
removed the config option that disabled debuginfod and enabled it with PACKAGECONFIG Signed-off-by: Dorinda Bassey --- meta/recipes-devtools/elfutils/elfutils_0.182.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/recipes-devtools/elfutils/elfutils_0.182.bb b/meta

[OE-core] [PATCH 1/5] elfutils: split libdebuginfod into its own package

2021-01-24 Thread Dorinda
add package options for libdebuginfod Signed-off-by: Dorinda Bassey --- meta/recipes-devtools/elfutils/elfutils_0.182.bb | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/meta/recipes-devtools/elfutils/elfutils_0.182.bb b/meta/recipes-devtools/elfutils/elfutils_0.182.bb

[OE-core] [PATCH 3/3] elfutils: add support for ipkg

2021-01-21 Thread Dorinda
debuginfod scanner 0.181 could only support RPM and scan .debs, it can now scan .ipk Signed-off-by: Dorinda Bassey --- .../elfutils/elfutils_0.181.bb| 1 + ...d-support-for-ipkg-to-debuginfod.cxx.patch | 32 +++ 2 files changed, 33 insertions(+) create mode

[OE-core] [PATCH 2/3] elfutils: add PACKAGECONFIG for debuginfod

2021-01-21 Thread Dorinda
removed the config option that disabled debuginfod and enabled it with PACKAGECONFIG Signed-off-by: Dorinda Bassey --- meta/recipes-devtools/elfutils/elfutils_0.181.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/recipes-devtools/elfutils/elfutils_0.181.bb b

[OE-core] [PATCH 1/3] elfutils: split libdebuginfod into its own package

2021-01-21 Thread Dorinda
add package options for libdebuginfod Signed-off-by: Dorinda Bassey --- meta/recipes-devtools/elfutils/elfutils_0.181.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/recipes-devtools/elfutils/elfutils_0.181.bb b/meta/recipes-devtools/elfutils/elfutils_0.181.bb