[OE-core] [PATCH] kernel-yocto: create dummy git user if necessary

2018-02-09 Thread Justin Bronder
. Signed-off-by: Justin Bronder <jsbron...@cold-front.org> --- meta/classes/kernel-yocto.bbclass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 60979a218f..dbf01f86b6 100644 --- a/meta/classes/kernel-yocto.b

[OE-core] [PATCH] kernel: add objtool to shared workdir

2018-02-12 Thread Justin Bronder
With CONFIG_UNWINDER_ORC (the default in 4.14), objtool is required for out-of-tree modules to be able to generate object files. For instance, meta-skeleton/hello-mod fails with: | make[3]: *** No rule to make target 'tools/objtool/objtool', needed by ... Signed-off-by: Justin Bronder

[OE-core] [PATCH] rxvt-unicode: add missing pkgconfig

2018-02-12 Thread Justin Bronder
The configure script uses pkg-config in RXVT_CHECK_MODULES and falls back to disabling features that were enabled in EXTRA_OECONF if pkg-config isn't found. Signed-off-by: Justin Bronder <jsbron...@cold-front.org> --- meta/recipes-sato/rxvt-unicode/rxvt-unicode.inc | 2 +- 1 file chan

Re: [OE-core] kernel-yocto: create dummy git user if necessary

2018-02-09 Thread Justin Bronder
On 09/02/18 15:27 -0500, Bruce Ashfield wrote: > On Fri, Feb 9, 2018 at 2:53 PM, Justin Bronder <jsbron...@cold-front.org> > wrote: > > The user's global git configuration may not have the name and email set > > and git autodetection can fail. The initialization commit

[OE-core] [PATCH] kernel-yocto: check git config during checkout

2018-02-09 Thread Justin Bronder
Initialize the git config prior creating a git repository in a plain directory. Signed-off-by: Justin Bronder <jsbron...@cold-front.org> --- meta/classes/kernel-yocto.bbclass | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/

[OE-core] [PATCH] kernel: module: module-base: depend on elfutils-native

2018-02-20 Thread Justin Bronder
libelf is required for CONFIG_STACK_VALIDATION which is required by CONFIG_UNWINDER_ORC (the default in 4.14+). We also need to update the module classes to pass HOSTCC and HOSTCPP just like the kernel class already does. Otherwise the test for libelf in the kernel Makefile fails. ---

Re: [OE-core] kernel: module: module-base: depend on elfutils-native

2018-02-20 Thread Justin Bronder
On 20/02/18 12:06 -0500, Bruce Ashfield wrote: > On Tue, Feb 20, 2018 at 11:41 AM, Justin Bronder > <jsbron...@cold-front.org> wrote: > > libelf is required for CONFIG_STACK_VALIDATION which is required by > > CONFIG_UNWINDER_ORC (the default in 4.14+). > > As you'

Re: [OE-core] ccache: update to 3.4.1

2018-03-07 Thread Justin Bronder
On 02/03/18 19:14 -0800, Khem Raj wrote: > On 3/2/18 2:09 PM, Justin Bronder wrote: > > https://ccache.samba.org/releasenotes.html#_ccache_3_4_1 > > > > License-Update: copyright years and file paths updated > > > > Signed-off-by: Justin Bronder <jsbron.

[OE-core] [PATCH] ccache: update to 3.4.1

2018-03-02 Thread Justin Bronder
https://ccache.samba.org/releasenotes.html#_ccache_3_4_1 License-Update: copyright years and file paths updated Signed-off-by: Justin Bronder <jsbron...@cold-front.org> --- meta/recipes-devtools/ccache/ccache_3.3.4.bb | 12 meta/recipes-devtools/ccache/ccache_3.4.1.b

Re: [OE-core] ccache: update to 3.4.1

2018-03-02 Thread Justin Bronder
On 02/03/18 17:06 -0500, Denys Dmytriyenko wrote: > On Fri, Mar 02, 2018 at 04:58:17PM -0500, Justin Bronder wrote: > > https://ccache.samba.org/releasenotes.html#_ccache_3_4_1 > > > > License-Update: copyright years and file paths updated > > > > Signed-off-b

[OE-core] [PATCH v2] ccache: update to 3.4.1

2018-03-02 Thread Justin Bronder
https://ccache.samba.org/releasenotes.html#_ccache_3_4_1 License-Update: copyright years and file paths updated Signed-off-by: Justin Bronder <jsbron...@cold-front.org> --- meta/recipes-devtools/ccache/ccache_3.3.5.bb | 12 meta/recipes-devtools/ccache/ccache_3.4.1.b

[OE-core] [PATCH] populate_sdk_ext: copy BBMULTICONFIG files

2021-06-16 Thread Justin Bronder
-ext/image/tmp-renamed-sdk/layers/openembedded-core/meta/conf/bitbake.conf:767: Could not include required file conf/multiconfig/abc.conf Signed-off-by: Justin Bronder --- meta/classes/populate_sdk_ext.bbclass | 12 +++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/me

[OE-core] [PATCH v2] populate_sdk_ext: copy BBMULTICONFIG files

2021-06-21 Thread Justin Bronder
-ext/image/tmp-renamed-sdk/layers/openembedded-core/meta/conf/bitbake.conf:767: Could not include required file conf/multiconfig/abc.conf Signed-off-by: Justin Bronder --- meta/classes/populate_sdk_ext.bbclass | 13 - 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/me

[OE-core] [meta-oe][PATCH] hidapi: add rdep on glibc-gconv-utf-16

2021-08-25 Thread Justin Bronder
libhidapi-libusb needs to convert from UTF-16LE to WCHAR_T in order to read various libusb string descriptors. Signed-off-by: Justin Bronder --- meta-oe/recipes-support/hidapi/hidapi_git.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-oe/recipes-support/hidapi/hidapi_git.bb b/meta

[OE-core] [meta-oe][PATCH v2] hidapi: add rdep on glibc-gconv-utf-16

2021-08-30 Thread Justin Bronder
libhidapi-libusb needs to convert from UTF-16LE to WCHAR_T in order to read various libusb string descriptors. Signed-off-by: Justin Bronder --- meta-oe/recipes-support/hidapi/hidapi_git.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-oe/recipes-support/hidapi/hidapi_git.bb b/meta

Re: [OE-core] hidapi: add rdep on glibc-gconv-utf-16

2021-08-30 Thread Justin Bronder
My apologies, this should have been sent to openembedded-de...@lists.openembedded.org. On 30/08/21 10:59 -0400, Justin Bronder wrote: > libhidapi-libusb needs to convert from UTF-16LE to WCHAR_T in order to > read various libusb string descriptors. > > Signed-off-by: Ju

Re: [OE-core] Correct way to set DRIDRIVERS and GALLIUMDRIVERS from mesa bbappend

2021-12-01 Thread Justin Bronder
runs after parsing. https://www.yoctoproject.org/docs/current/mega-manual/mega-manual.html#anonymous-python-functions python __anonymous () { d.setVar("DRIDRIVERS", "i965") } -- Justin Bronder -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages

[OE-core] [PATCH] initramfs-framework: unmount automounts before switch_root

2022-02-10 Thread Justin Bronder
If mounts are left lingering, then after we switch_root, attempts to modify the block devices will result in an EBUSY with no way to unmount them. As we're about to switch_root anyways, there isn't much use to keep anything mounted unless it has the new rootfs. Signed-off-by: Justin Bronder

[OE-core] [PATCH] pulseaudio: conditionally depend on alsa-plugins-pulseaudio-conf

2022-04-27 Thread Justin Bronder
The alsa-plugins-pulseaudio-conf package is only enabled when DISTRO_FEATURES contains pulseaudio. Signed-off-by: Justin Bronder --- meta/recipes-multimedia/pulseaudio/pulseaudio.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-multimedia/pulseaudio

[OE-core] [PATCH 2/2] python3-referencing: drop ${PYTHON_PN}

2024-04-11 Thread Justin Bronder
python 2 is gone and we don't need the abstraction now, drop the remaining usage of this variable. Signed-off-by: Justin Bronder --- meta/recipes-devtools/python/python3-referencing_0.33.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/python

[OE-core] [PATCH 0/2] Clear remaining ${PYTHON_PN} uses

2024-04-11 Thread Justin Bronder
Removing a couple of remaining ${PYTHON_PN} uses that were missed in the prior scrubs. -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#198143): https://lists.openembedded.org/g/openembedded-core/message/198143 Mute This Topic:

[OE-core] [PATCH 1/2] python3-jsonschema-specifications: drop ${PYTHON_PN}

2024-04-11 Thread Justin Bronder
python 2 is gone and we don't need the abstraction now, drop the remaining usage of this variable. Signed-off-by: Justin Bronder --- .../python/python3-jsonschema-specifications_2023.12.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/python