Re: [OE-core] [[PATCH v2] kernel-fitimage.bbclass: only package unique DTBs

2022-08-17 Thread Awais Belal
compiling in the FIT and only picking up unique ones. Signed-off-by: Awais Belal --- meta/classes/kernel-fitimage.bbclass | 8 1 file changed, 8 insertions(+) diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass index 7e09b075ff..56d71ba8fa 100644

[OE-core] [[PATCH v2] kernel-fitimage.bbclass: only package unique DTBs

2022-08-16 Thread Awais Belal
: Can't open arch/arm64/boot/fitImage.tmp: No such file or directory We fix this by tracking the DTBs we're compiling in the FIT and only picking up unique ones. Signed-off-by: Awais Belal --- meta/classes/kernel-fitimage.bbclass | 8 1 file changed, 8 insertions(+) diff --git a/meta

Re: [OE-core] [PATCH] kernel-fitimage.bbclass: only package unique DTBs

2022-08-10 Thread Awais Belal
penembedded-core@lists.openembedded.org on behalf of Quentin Schulz Sent: Monday, August 8, 2022 4:15:15 PM To: Belal, Awais; openembedded-core@lists.openembedded.org Subject: Re: [OE-core] [PATCH] kernel-fitimage.bbclass: only package unique DTBs Hi Awais, On 8/8/22 12:32, Awais Belal wrote: > T

[OE-core] [PATCH] kernel-fitimage.bbclass: only package unique DTBs

2022-08-08 Thread Awais Belal
: Can't open arch/arm64/boot/fitImage.tmp: No such file or directory We fix this by tracking the DTBs we're compiling in the FIT and only picking up unique ones. Signed-off-by: Awais Belal --- meta/classes/kernel-fitimage.bbclass | 16 1 file changed, 16 insertions(+) diff --git

Re: [OE-core] linux-firmware: discrepancy around the brcmfmac/cyfmac43430

2021-11-20 Thread Awais Belal
Ping! -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#158528): https://lists.openembedded.org/g/openembedded-core/message/158528 Mute This Topic: https://lists.openembedded.org/mt/86989608/21656 Group Owner:

Re: [OE-core] linux-firmware: discrepancy around the brcmfmac/cyfmac43430

2021-11-14 Thread Awais Belal
Ping! BR, Awais -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#158274): https://lists.openembedded.org/g/openembedded-core/message/158274 Mute This Topic: https://lists.openembedded.org/mt/86989608/21656 Group Owner:

[OE-core] linux-firmware: discrepancy around the brcmfmac/cyfmac43430

2021-11-11 Thread Awais Belal
Hi all, It seems like there's a discrepancy regarding the license of the brcmfmac/cyfmac43430 firmware or maybe I am misunderstanding something. If I look at the original source (kernel git) for the linux-firmware components the WHENCE file mentions File: cypress/cyfmac43430-sdio.bin Link:

[OE-core] [PATCH 1/2] perl: allow empty lines and comments in perl-rdepends.txt

2021-03-30 Thread Awais Belal
With this change the rdepends file can now have empty lines and comment lines. The perl-rdepends.txt generation will be fixed with further commits to leverage this change. Signed-off-by: Awais Belal --- meta/recipes-devtools/perl/perl_5.32.1.bb | 3 +++ 1 file changed, 3 insertions(+) diff

[OE-core] [PATCH 2/2] perl: fix creation and generate new perl-rdepends.txt

2021-03-30 Thread Awais Belal
. Signed-off-by: Awais Belal --- meta/recipes-devtools/perl/files/perl-rdepends.txt | 8 meta/recipes-devtools/perl/perl_5.32.1.bb | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/meta/recipes-devtools/perl/files/perl-rdepends.txt b/meta/recipes-devtools

Re: [OE-core] [PATCH v2] rootfs.py: mask run-postinsts systemd service when unneeded

2021-03-25 Thread Awais Belal
[Edited Message Follows] Hi Oleksiy, I've submitted https://lists.openembedded.org/g/openembedded-core/topic/81600237 which should supersede this I did not send it as v3 because it is a different solution. I've also ran 'bitbake -c testimage core-image-sato' with the new solution and it is

Re: [OE-core] [PATCH v2] rootfs.py: mask run-postinsts systemd service when unneeded

2021-03-25 Thread Awais Belal
Hi Oleksiy, I've submitted https://lists.openembedded.org/g/openembedded-core/topic/81600237 which should supersede this I did not send it as v3 because it is a different solution. -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#149925):

[OE-core] [PATCH] rootfs.py: uninstall the run-postinsts package if not needed

2021-03-25 Thread Awais Belal
. This is also more aligned with the function (_uninstall_unneeded) this functionality is triggered through. Signed-off-by: Awais Belal --- meta/lib/oe/rootfs.py | 8 +++- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index

[OE-core] [PATCH v2] rootfs.py: mask run-postinsts systemd service when unneeded

2021-03-22 Thread Awais Belal
The service is unnecessarily run even when it is unneeded. This was handled correctly for sysV systems however the service still runs on the systemd systems as it is not disabled/masked when not needed. Signed-off-by: Awais Belal --- meta/lib/oe/rootfs.py | 4 1 file changed, 4 insertions

Re: [OE-core] [PATCH] rootfs.py: mask run-postinsts systemd service when unneeded

2021-03-22 Thread Awais Belal
Hi Alex, > > Why isn’t this seen in the tests? Can you add a test that shows the issue > please? (Fails without the patch, passes with) I'm not very well versed with the oe test infrastructure, I'd be happy to create a test for this scenario if you can point me to the material that I need to

[OE-core] [PATCH] rootfs.py: mask run-postinsts systemd service when unneeded

2021-03-22 Thread Awais Belal
The service is unnecessarily run even when it is unneeded. This was handled correctly for sysV systems however the service still runs on the systemd systems as it is not disabled/masked when not needed. Signed-off-by: Awais Belal --- meta/lib/oe/rootfs.py | 4 1 file changed, 4 insertions

[OE-core] [PATCH] libsdl2: disable shared memory for native builds

2021-03-17 Thread Awais Belal
20.04. The libsdl2 native are mainly used for qemu at this time so it is a major usecase. A report of such a failure was also presented at https://lists.yoctoproject.org/g/poky/topic/78854857 Signed-off-by: Awais Belal --- meta/recipes-graphics/libsdl2/libsdl2_2.0.14.bb | 1 + 1 file changed, 1

Re: [OE-core] [PATCH] kernel.bbclass: fix deployment for initramfs images

2021-02-04 Thread Awais Belal
and pick up relevant initramfs bundled images using KERNEL_IMAGETYPE_FOR_MAKE instead of KERNEL_IMAGETYPES. Signed-off-by: Awais Belal --- meta/classes/kernel.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass

[OE-core] [PATCH] kernel.bbclass: fix deployment for initramfs images

2021-01-29 Thread Awais Belal
and pick up relevant initramfs bundled images using KERNEL_IMAGETYPE_FOR_MAKE instead of KERNEL_IMAGETYPES. Signed-off-by: Awais Belal --- meta/classes/kernel.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass

Re: [OE-core] [PATCH] toolchain-shar-relocate.sh: check for environment-setup beforehand

2020-06-18 Thread Awais Belal
[OE-core] [PATCH] toolchain-shar-relocate.sh: check for environment-setup beforehand On Thu, Jun 18, 2020 at 08:50:21AM +0100, Paul Barker wrote: > On Wed, 17 Jun 2020 at 21:48, Awais Belal wrote: > > > > The script runs a 'cat' on the script and if it isn't present in th

Re: [OE-core] [PATCH] toolchain-shar-relocate.sh: check for environment-setup beforehand

2020-06-18 Thread Awais Belal
for environment-setup beforehand On Wed, 17 Jun 2020 at 21:48, Awais Belal wrote: > > The script runs a 'cat' on the script and if it isn't present in the > sdk the cat command waits on the std input and hence the installation > process simply sits there. That sort of error would t

[OE-core] [PATCH] toolchain-shar-relocate.sh: check for environment-setup beforehand

2020-06-17 Thread Awais Belal
The script runs a 'cat' on the script and if it isn't present in the sdk the cat command waits on the std input and hence the installation process simply sits there. Signed-off-by: Awais Belal --- meta/files/toolchain-shar-relocate.sh | 6 ++ 1 file changed, 6 insertions(+) diff --git

[OE-core] [sumo][PATCH] busybox: enable reboot in defconfig

2018-11-15 Thread Awais Belal
the initramfs scripts use the reboot command at the end of installation. Without this change we see reboot: not found Signed-off-by: Awais Belal --- meta/recipes-core/busybox/busybox/defconfig | 2 +- meta/recipes-core/busybox/busybox/init.cfg | 1 - 2 files changed, 1 insertion(+), 2 deletions

[OE-core] [PATCH v2] glibc-package.inc: correct intention for deleting /usr/lib as needed

2018-09-27 Thread Awais Belal
simply try to delete /usr/lib after deleting /usr/lib/locale to make sure it deletes cleanly and is empty at the time of deletion. Signed-off-by: Awais Belal --- meta/recipes-core/glibc/glibc-package.inc | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/meta/recipes-core

[OE-core] [PATCH] matchbox-wm: fix QA issues with composite enabled

2018-03-26 Thread Awais Belal
? [build-deps] WARNING: matchbox-wm-1.2.1-r0 do_package_qa: QA Issue: matchbox-wm rdepends on libxdamage, but it isn't a build dependency, missing libxdamage in DEPENDS or PACKAGECONFIG? [build-deps] This fixes the above mentioned warnings. Signed-off-by: Awais Belal <awais_be...@mentor.

[OE-core] [PATCH v2] dhcp: fix build issue with libxml2 support

2017-11-07 Thread Awais Belal
pass on silently when action-if-found is executed. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- ...correct-the-intention-for-xml2-lib-search.patch | 37 ++ meta/recipes-connectivity/dhcp/dhcp_4.3.6.bb | 1 + 2 files changed, 38 insertions(+) creat

[OE-core] [PATCH] dhcp: fix build issue with libxml2 support

2017-10-25 Thread Awais Belal
pass on silently when action-if-found is executed. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- ...correct-the-intention-for-xml2-lib-search.patch | 35 ++ meta/recipes-connectivity/dhcp/dhcp_4.3.6.bb | 1 + 2 files changed, 36 insertions(+) creat

[OE-core] [PATCH] autogen-native: allow user to set POSIX_SHELL as desired

2017-05-18 Thread Awais Belal
d in OE so build failures are seen in cases where deep directory hierarchies are used for the builddir. We now use 'test -n' just to make sure if POSIX_SHELL is set by the user or not and then move forward to other tests in case it is unset. Signed-off-by: Awais Belal <awais_be.

[OE-core] [PATCH] autogen: fix autoopts script generation to handle shebang

2017-05-12 Thread Awais Belal
cases. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- .../autogen/autogen-native_5.18.12.bb | 1 + ...oopts-mk-tpl-config.sh-fix-shebang-length.patch | 49 ++ 2 files changed, 50 insertions(+) create mode 100644 meta/recipes-devtools/autogen/a

[OE-core] [PATCH] [RFC]kernel-yocto.bbclass: ensure repatching when HEAD is checked out

2017-02-03 Thread Awais Belal
trouble as validate_branches checks out the HEAD of the branch and so the patches should be reapplied rather than skipped due to finding of the fence post. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- meta/classes/kernel-yocto.bbclass | 4 1 file changed, 4 insertions(+) diff

[OE-core] [PATCH] core-image-minimal-initramfs: fix extrausers functionality

2016-12-28 Thread Awais Belal
did not succeed. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- meta/recipes-core/images/core-image-minimal-initramfs.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/images/core-image-minimal-initramfs.bb b/meta/recipes-core/images/core

[OE-core] [PATCH v2 2/2] grub-efi/live-vm-common: allow grub as EFI_PROVIDER

2016-12-16 Thread Awais Belal
This allows grub to be used as EFI_PROVIDER and extends the grub-efi class so it can be used as is when EFI_PROVIDER is grub. Currently this can only be leveraged if you are using the grub_git recipe and GRUBPLATFORM plus EFI_PROVIDER are set correctly. Signed-off-by: Awais Belal <awais

[OE-core] [PATCH v2 1/2] grub_git: extend recipe for proper target deployment

2016-12-16 Thread Awais Belal
This extends the grub_git recipe so it can deploy grub on the target boot disk just like grub-efi. Mainly this copies stuff from the grub-efi recipe and then adjusts some bits accordingly. This would allow using the latest and greatest versions of grub on the target. Signed-off-by: Awais Belal

[OE-core] [PATCH 1/2] grub_git: extend recipe for proper target deployment

2016-12-13 Thread Awais Belal
This extends the grub_git recipe so it can deploy grub on the target boot disk just like grub-efi. Mainly this copies stuff from the grub-efi recipe and then adjusts some bits accordingly. This would allow using the latest and greatest versions of grub on the target. Signed-off-by: Awais Belal

[OE-core] [PATCH 2/2] grub-efi/live-vm-common: allow grub as EFI_PROVIDER

2016-12-13 Thread Awais Belal
This allows grub to be used as EFI_PROVIDER and extends the grub-efi class so it can be used as is when EFI_PROVIDER is grub. Currently this can only be leveraged if you are using the grub_git recipe and GRUBPLATFORM plus EFI_PROVIDER are set correctly. Signed-off-by: Awais Belal <awais

[OE-core] [master][morty] grub2: fix some quirks and div by zero

2016-12-08 Thread Awais Belal
. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- ...ern-efi-mm.c-grub_efi_finish_boot_service.patch | 79 ++ ...ern-efi-mm.c-grub_efi_get_memory_map-Neve.patch | 43 meta/recipes-bsp/grub/grub2.inc| 2 + 3 files changed, 124 inse

[OE-core] [PATCH] kern-tools: update to avoid kernel_metadata failures

2016-12-07 Thread Awais Belal
with no specific metadata branches fail. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- meta/recipes-kernel/kern-tools/kern-tools-native_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb b/meta/recipes-

[OE-core] [PATCH] asciidoc-native: add dependency on docbook-xml-dtd4-native

2016-08-19 Thread Awais Belal
available locally. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- meta/recipes-extended/asciidoc/asciidoc_8.6.9.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-extended/asciidoc/asciidoc_8.6.9.bb b/meta/recipes-extended/asciidoc/asciidoc_8.6.9.bb index 1500b0a..7

[OE-core] [PATCH] insane.bbclass: handle INSANE_SKIP for license-checksum

2016-08-18 Thread Awais Belal
so it returns cleanly in such a scenario. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- meta/classes/insane.bbclass | 4 1 file changed, 4 insertions(+) diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 2cb8cc0..719ecd4 100644 --- a/meta/c

[OE-core] [PATCH] init-install*: only pick root mmc devices

2016-08-10 Thread Awais Belal
. We simply now drop these sub-devices and only present the user with the root of such mmc devices. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- meta/recipes-core/initrdscripts/files/init-install-efi.sh | 8 +++- meta/recipes-core/initrdscripts/files/init-install.sh

[OE-core] [[PATCH v3] init-install*: /etc/mtab make a link rather than a copy

2016-08-01 Thread Awais Belal
on newer systems where there is such a need. Same is suggested by busybox. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- meta/recipes-core/initrdscripts/files/init-install-efi.sh | 4 ++-- meta/recipes-core/initrdscripts/files/init-install.sh | 4 ++-- 2 files changed, 4 inse

[OE-core] [][PATCH v2] init-install*: /etc/mtab make a link rather than a copy

2016-07-29 Thread Awais Belal
on newer systems where there is such a need. Same is suggested by busybox. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- meta/recipes-core/initrdscripts/files/init-install-efi.sh | 2 +- meta/recipes-core/initrdscripts/files/init-install.sh | 2 +- 2 files changed, 2 insertions

[OE-core] [PATCH] init-install*: /etc/mtab make a link rather than a copy

2016-07-28 Thread Awais Belal
on newer systems where there is such a need. Same is suggested by busybox. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- meta/recipes-core/initrdscripts/files/init-install-efi.sh | 2 +- meta/recipes-core/initrdscripts/files/init-install.sh | 2 +- 2 files changed, 2 insertions

[OE-core] [PATCH] mesa: move crypto configs to versioned recipe

2016-06-30 Thread Awais Belal
Fixes WARNING: mesa-2_11.0.8+gitAUTOINC+b9b19162ee-r0 do_configure: QA Issue: mesa: configure was passed unrecognised options: --with-sha1 [unknown-configure-option] for git based recipe as it is on an older version of mesa which does not support crypto configs. Signed-off-by: Awais Belal

[OE-core] [PATCH] python3: fix CROSSPYTHONPATH for cross builds

2016-06-14 Thread Awais Belal
There are cases where target and host are of the same type and at such instances the target modules may be loaded if CROSSPYTHONPATH is not correct. This adds host library paths so that target modules are not loaded while cross compiling to avoid illegal instruction issues. Signed-off-by: Awais

[OE-core] [PATCH] mesa-demos: provide option for disabling GLX demos

2016-05-19 Thread Awais Belal
There are platforms that default to EGL only configurations in which case the GLX applications are not required at all. Allow the user to control generation of these demos as needed through a configure switch. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- .../0013-only-build-GLX

[OE-core] [[PATCH v2 2/2] mesa-demos: provide option for disabling GLX demos

2016-05-04 Thread Awais Belal
There are platforms that default to EGL only configurations in which case the GLX applications are not required at all. Allow the user to control generation of these demos as needed through a configure switch. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- .../0012-only-build-GLX

[OE-core] [[PATCH v2 1/2] mesa-demos: remove demos using obsolete screen surface

2016-05-04 Thread Awais Belal
The mesa surface EGL_MESA_screen_surface was obsoleted and then dropped from mesa some time ago. Drop demos depending on this. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- ...dependant-on-obsolete-MESA_screen_surface.patch | 1592 meta/recipes-graphics/mes

[OE-core] [PATCH 2/2] mesa-demos: provide option for disabling GLX demos

2016-04-22 Thread Awais Belal
There are platforms that default to EGL only configurations in which case the GLX applications are not required at all. Allow the user to control generation of these demos as needed through a configure switch. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- .../0012-only-build-GLX

[OE-core] [PATCH 1/2] mesa-demos: remove demos using obsolete screen surface

2016-04-22 Thread Awais Belal
The mesa surface EGL_MESA_screen_surface was obsoleted and then dropped from mesa some time ago. Drop demos depending on this. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- ...dependant-on-obsolete-MESA_screen_surface.patch | 1592 meta/recipes-graphics/mes

[OE-core] [jethro][PATCH] lttng-tools: fix regression tests hang

2016-03-30 Thread Awais Belal
-by: Awais Belal <awais_be...@mentor.com> --- .../lttng/lttng-tools/Fix-regression-tests.patch | 480 + meta/recipes-kernel/lttng/lttng-tools_2.6.0.bb | 1 + 2 files changed, 481 insertions(+) create mode 100644 meta/recipes-kernel/lttng/lttng-tools/Fix-regr

[OE-core] [master][jethro][PATCH] systemd-serialgetty: allow baud rate overriding

2016-03-30 Thread Awais Belal
In case a getty is required on a UART which is not being used as the kernel console, the current agetty invocation fails to obey the baud rate configured through the SERIAL_CONSOLES variable because it uses --keep-baud. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- meta/recipe

[OE-core] [PATCH][RFC] systemd-serialgetty: allow baud rate overriding

2016-03-07 Thread Awais Belal
In case a getty is required on a UART which is not being used as the kernel console, the current agetty invocation fails to obey the baud rate configured through the SERIAL_CONSOLES variable because it uses --keep-baud. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- meta/recipe

[OE-core] [PATCH] dhcp: search libxml2 for bind

2016-01-12 Thread Awais Belal
libdns requires libxml2 if bind was built with libxml2 support enabled. Compilation will fail for omapip/test.c in case -lxml2 isn't used during the build. So, we add losely coupled search path which will pick up the lib if it is present. Signed-off-by: Awais Belal <awais_be...@mentor.

[OE-core] [fido][PATCH] bitbake: toaster: Rework mimetype guessing to fix artifact downloads

2015-12-28 Thread Awais Belal
From: Elliot Smith Artifact download links were broken because the function to get the mimetype for the artifact was incorrectly using the underlying mimetype library. The function was also attached to the build environment controller, which was unnecessary, as we only

[OE-core] [fido][PATCH] grub2: Fix CVE-2015-8370

2015-12-28 Thread Awais Belal
http://git.savannah.gnu.org/cgit/grub.git/commit/?id=451d80e52d851432e109771bb8febafca7a5f1f2 Signed-off-by: Awais Belal <awais_be...@mentor.com> --- ...E-2015-8370-Grub2-user-pass-vulnerability.patch | 52 ++ meta/recipes-bsp/grub/grub2.inc| 1 + 2

[OE-core] [PATCH] grub2: Fix CVE-2015-8370

2015-12-23 Thread Awais Belal
http://git.savannah.gnu.org/cgit/grub.git/commit/?id=451d80e52d851432e109771bb8febafca7a5f1f2 Signed-off-by: Awais Belal <awais_be...@mentor.com> --- ...E-2015-8370-Grub2-user-pass-vulnerability.patch | 52 ++ meta/recipes-bsp/grub/grub2.inc| 1 + 2

[OE-core] [dizzy][PATCH] grub2: Fix CVE-2015-8370

2015-12-23 Thread Awais Belal
http://git.savannah.gnu.org/cgit/grub.git/commit/?id=451d80e52d851432e109771bb8febafca7a5f1f2 Signed-off-by: Awais Belal <awais_be...@mentor.com> --- ...E-2015-8370-Grub2-user-pass-vulnerability.patch | 52 ++ meta/recipes-bsp/grub/grub-efi_2.00.bb | 1 +

[OE-core] [RFC][PATCH] python: ensure usage of host modules while cross compiling

2015-10-30 Thread Awais Belal
modules resolves the issue. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- ...e-of-native-modules-while-cross-compiling.patch | 31 ++ meta/recipes-devtools/python/python_2.7.9.bb | 1 + 2 files changed, 32 insertions(+) create mode 100644 meta/recipes-de

[OE-core] [PATCH] mesa-demos: fix deadlock in sharedtex_mt

2015-10-08 Thread Awais Belal
This patch fixes a deadlock that occurs between the main thread and rendering threads of the sharedtex_mt demo. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- ...10-sharedtex_mt-fix-rendering-thread-hang.patch | 43 ++ meta/recipes-graphics/mesa/mesa-demos_8.

[OE-core] [][PATCH v2] mesa-demos: fix deadlock in sharedtex_mt

2015-10-08 Thread Awais Belal
This patch fixes a deadlock that occurs between the main thread and rendering threads of the sharedtex_mt demo. Signed-off-by: Awais Belal <awais_be...@mentor.com> --- ...10-sharedtex_mt-fix-rendering-thread-hang.patch | 43 ++ meta/recipes-graphics/mesa/mesa-demos_8.

[OE-core] [PATCH] initrdscripts: handle mmc device as installer medium

2015-07-07 Thread Awais Belal
updates the way device identifier stripping is done and handles the exclusion of installer device from installation candidates more generically. Signed-off-by: Awais Belal awais_be...@mentor.com --- .../initrdscripts/files/init-install-efi.sh | 20 .../recipes-core

[OE-core] [PATCH v2] initrdscripts: make boot drive detection more generic

2015-05-21 Thread Awais Belal
that the drive name will be passed and in case the label is passed it fails and provides the boot drive as an option for installation driver. We now use a more generic approach to identify the boot drive which can handle both drive name as well as label if passed. Signed-off-by: Awais Belal awais_be

[OE-core] [PATCH] initrdscripts: make boot drive detection more generic

2015-05-21 Thread Awais Belal
that the drive name will be passed and in case the label is passed it fails and provides the boot drive as an option for installation driver. We now use a more generic approach to identify the boot drive which can handle both drive name as well as label if passed. Signed-off-by: Awais Belal awais_be

[OE-core] [PATCH] gstreamer1.0-omx: use mulitple SCMs to fetch submodules

2014-12-29 Thread Awais Belal
it is available in the downloads_dir for later use. Signed-off-by: Awais Belal awais_be...@mentor.com --- .../gstreamer/gstreamer1.0-omx_git.bb | 11 --- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_git.bb b/meta

[OE-core] [PATCH] gstreamer1.0-* use gitsm style SRC_URI for git recipes

2014-12-22 Thread Awais Belal
. Signed-off-by: Awais Belal awais_be...@mentor.com --- .../gstreamer/gstreamer1.0-libav_git.bb|2 +- .../gstreamer/gstreamer1.0-omx_git.bb |2 +- .../gstreamer/gstreamer1.0-plugins.inc |2 +- .../gstreamer/gstreamer1.0_git.bb |2 +- 4

[OE-core] [PATCH] libxcb, xcbproto: upgrade to version 1.11

2014-12-08 Thread Awais Belal
Update libxcb and xcb-proto to 1.11 from 1.10. Signed-off-by: Awais Belal awais_be...@mentor.com --- .../xorg-lib/{libxcb_1.10.bb = libxcb_1.11.bb}|5 +++-- .../{xcb-proto_1.10.bb = xcb-proto_1.11.bb} |4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) rename meta

[OE-core] [PATCH] gstreamer1.0-* fix configure for out of tree build on git recipes

2014-12-08 Thread Awais Belal
). Additionally rather than overriding the whole do_configure step we only _prepend to make it clear what we are doing here. Signed-off-by: Awais Belal awais_be...@mentor.com --- .../gstreamer/gstreamer1.0-libav_git.bb|5 +++-- .../gstreamer/gstreamer1.0-omx_git.bb |5

[OE-core] [PATCH] libxcb: fix socket writes

2014-12-05 Thread Awais Belal
The patch has been picked up from libxcb git and is only applicable to v1.10 while it gets fixed in mainstream v1.11. http://cgit.freedesktop.org/xcb/libxcb/commit/?id=be0fe56c3bcad5124dcc6c47a2fad01acd16f71a Signed-off-by: Awais Belal awais_be...@mentor.com --- ...owns-socket-and-no-other

[OE-core] [PATCH] gstreamer1.0-libav: specify proper cross-prefix

2014-12-05 Thread Awais Belal
This avoids a compile failure locating ranlib by providing the correct cross-prefix for build. Signed-off-by: Drew Moseley drew_mose...@mentor.com Signed-off-by: Awais Belal awais_be...@mentor.com --- .../gstreamer/gstreamer1.0-libav_1.4.1.bb |3 ++- .../gstreamer/gstreamer1.0