[OE-core] [PATCH V5 03/10] udev: remove implicit dependency on initscripts

2013-08-08 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com At some point, the udev was modified to source the functions from initscripts or lsbinitscripts. This dependency is actually not needed. If we use udev in a system where initscripts from oe-core is not available, there will be errors. This patch fixes this

[OE-core] [PATCH V5 02/10] use a uniform way to determine whether rootfs is read-only

2013-08-08 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com Previously, we had two ways to check whether the rootfs was read-only. In some part of the system, we determined whether the rootfs is read-only by checking the fstab or /proc/mounts; in other part of the system, we used the value of ROOTFS_READ_ONLY in

[OE-core] [PATCH V5 00/10] Make read-only rootfs work with live images

2013-08-08 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com Changes from V4: 1. Fix the error of 'read -f' in populate-volatile.sh. The '-f' should should not be there. 2. Fix the error of missing colon in populate-volatile.sh. Changes from V3: 1. Take hidden directories and files into consideration when copying

[OE-core] [PATCH V5 05/10] populate-volatile.sh: don't spawn background process at rootfs time

2013-08-08 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com If we're building a read-only rootfs, we'll get the following error now and then. tar: .: file changed as we read it The root cause is that we spawn background process at rootfs time. When the tar command is running, it's possible that files under rootfs

[OE-core] [PATCH V5 10/10] openssh: fix for read-only rootfs

2013-08-08 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com If the rootfs is read-only and the ssh keys are not available at system start-up, the init script will generate ssh keys into /etc/ssh, thus causing a 'read-only file system' error. In order for Yocto based image to work correctly for read-only rootfs, we use

[OE-core] [PATCH V5 08/10] populate-volatile.sh: use 'cp -a' to avoid potential problem

2013-08-08 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com Previously, dead links in target directory will not be copied. This is incorrect as dead links are not uncommon in our rootfs. So we use '-a' option instead. Signed-off-by: Chen Qi qi.c...@windriver.com --- .../initscripts-1.0/populate-volatile.sh |

[OE-core] [PATCH V5 09/10] irda-utils: fix for read-only rootfs

2013-08-08 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com The init script for irda writes configuration items to /etc/sysconfig/irda if that file is not available in system. But it's actually not necessary, the behavior doesn't change whether the init script writes to the file or not. Considering it issues error

[OE-core] GCC PARALLEL_MAKE changed

2013-08-08 Thread Vali Cobelea
Hi, We noticed that the GCC parallel make flag (PARALLEL_MAKE, located in meta/recipes-devtools/gcc/gcc-cross-canadian_4.?.bb) got changed from -j 32 to simply nothing. We are wondering what was the reason for this change, which seems to have been made somewhere before the fall of 2012, while

Re: [OE-core] [PATCH 1/1] systemd: ignore qemu output, and check its return code

2013-08-08 Thread Rongqing Li
On 08/08/2013 02:26 AM, Khem Raj wrote: On Aug 7, 2013, at 12:30 AM, Rongqing Li rongqing...@windriver.com wrote: ping On 07/24/2013 01:24 PM, rongqing...@windriver.com wrote: From: Roy.Li rongqing...@windriver.com qemu prints errors sometime, but it works well, how do you know ?

[OE-core] [PATCH] linux-dtb.inc: Replace /boot/ with /${KERNEL_IMAGEDEST}/

2013-08-08 Thread Mike Looijmans
Devicetree files were installed hard-coded in /boot. When KERNEL_IMAGEDEST is anything else but boot, the postinstall script and the file locations no longer match and the postinstall will fail. Replace boot with ${KERNEL_IMAGEDEST} to fix this problem, and to allow the devicetree files to be

Re: [OE-core] [PATCH 1/1] systemd: ignore qemu output, and check its return code

2013-08-08 Thread Rongqing Li
On 08/07/2013 07:55 PM, Burton, Ross wrote: On 7 August 2013 08:30, Rongqing Li rongqing...@windriver.com wrote: ${@qemu_run_binary(d, '$D', '${base_bindir}/udevadm')} hwdb --update \ - --root $D + --root $D 2/dev/null + +

[OE-core] [PATCH 2/2] libdbm-sqlite-perl: add version 1.40

2013-08-08 Thread Hongxu Jia
DBD::SQLite is a Perl DBI driver for SQLite, that includes the entire thing in the distribution. So in order to get a fast transaction capable RDBMS working for your perl project you simply have to install this module, and nothing else. There is a perl script for test, while variable

[OE-core] [PATCH 1/2] libdbi-perl: add version 1.628

2013-08-08 Thread Hongxu Jia
The DBI is a database access module for the Perl programming language. It defines a set of methods, variables, and conventions that provide a consistent database interface, independent of the actual database being used. |- Scope of DBI -| .-. .--.

[OE-core] [PATCH 0/2] add perl database support packages

2013-08-08 Thread Hongxu Jia
In oe-core, only SQLite is supported, so we add perl-DBI and perl-DBD-SQLite. Test Case: 1) vim local.conf: ... IMAGE_INSTALL_append = libdbm-sqlite-perl PERL_DBM_TEST = 1 ... 2) build core-image-sato and boot the target 3) run sqlite-perl-test.pl in target ... root@qemuarm:~#

Re: [OE-core] [PATCH 2/2] libdbm-sqlite-perl: add version 1.40

2013-08-08 Thread Olof Johansson
On 13-08-08 11:01 +0200, Hongxu Jia wrote: create mode 100644 meta/recipes-extended/perl/libdbm-sqlite-perl_1.40.bb The recipe is called libdbm-sqlite-perl, but the perl module is called DBD::SQLite. Is that intentional, and if so, why? Regards, -- olofjn

Re: [OE-core] [PATCH 2/2] libdbm-sqlite-perl: add version 1.40

2013-08-08 Thread Hongxu Jia
On 08/08/2013 05:06 PM, Olof Johansson wrote: On 13-08-08 11:01 +0200, Hongxu Jia wrote: create mode 100644 meta/recipes-extended/perl/libdbm-sqlite-perl_1.40.bb The recipe is called libdbm-sqlite-perl, but the perl module is called DBD::SQLite. Is that intentional, and if so, why?

Re: [OE-core] [PATCH 2/2] libdbm-sqlite-perl: add version 1.40

2013-08-08 Thread Hongxu Jia
On 08/08/2013 05:06 PM, Olof Johansson wrote: On 13-08-08 11:01 +0200, Hongxu Jia wrote: create mode 100644 meta/recipes-extended/perl/libdbm-sqlite-perl_1.40.bb The recipe is called libdbm-sqlite-perl, but the perl module is called DBD::SQLite. Is that intentional, and if so, why? I know

[OE-core] sstate_create_package fails since 'tar: xxxx: file changed as we read it'

2013-08-08 Thread wenzong fan
Hi All, I met it on some packages like: util-macros-native, glib-2.0-native, libogg ... Build host: CentOS 5.9 Error messages: --- DEBUG: Preparing tree

[OE-core] [PATCH 1/2] libdbi-perl: add version 1.628

2013-08-08 Thread Hongxu Jia
The DBI is a database access module for the Perl programming language. It defines a set of methods, variables, and conventions that provide a consistent database interface, independent of the actual database being used. |- Scope of DBI -| .-. .--.

[OE-core] [PATCH 2/2] libdbd-sqlite-perl: add version 1.40

2013-08-08 Thread Hongxu Jia
DBD::SQLite is a Perl DBI driver for SQLite, that includes the entire thing in the distribution. So in order to get a fast transaction capable RDBMS working for your perl project you simply have to install this module, and nothing else. There is a perl script for test, while variable

[OE-core] [PATCH V2 0/2] add perl database support packages

2013-08-08 Thread Hongxu Jia
Change in V2: * Rename recipe to use libdbd-sqlite-perl instead of libdbm-sqlite-perl In oe-core, only SQLite is supported, so we add perl-DBI and perl-DBD-SQLite. Test Case: 1) vim local.conf: ... IMAGE_INSTALL_append = libdbd-sqlite-perl PERL_DBM_TEST = 1 ... 2) build core-image-sato and

[OE-core] [PATCH 0/1] checkroot.sh: respect the value of ENABLE_ROOTFS_FSCK

2013-08-08 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com The following changes since commit f63e7f4323368c0d6fe7a1d44393a7e15652d4f2: subversion: Add patch to use neon 0.30 (2013-08-07 07:43:47 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib ChenQi/sysv-fsck

[OE-core] [PATCH 1/1] checkroot.sh: respect the value of ENABLE_ROOTFS_FSCK

2013-08-08 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com Previously, fsck is always disabled because the value of rootcheck in the checkroot.sh script is always set to 'no'. We should respect the value of ENABLE_ROOTFS_FSCK in /etc/default/rcS to allow for filesystem check. Signed-off-by: Chen Qi

Re: [OE-core] [PATCH 2/2] libdbm-sqlite-perl: add version 1.40

2013-08-08 Thread Burton, Ross
On 8 August 2013 10:01, Hongxu Jia hongxu@windriver.com wrote: DBD::SQLite is a Perl DBI driver for SQLite, that includes the entire thing in the distribution. So in order to get a fast transaction capable RDBMS working for your perl project you simply have to install this module, and

Re: [OE-core] [PATCH 1/1] systemd: ignore qemu output, and check its return code

2013-08-08 Thread Burton, Ross
On 8 August 2013 09:55, Rongqing Li rongqing...@windriver.com wrote: | ERROR: ld.so: object 'libpseudo.so' from LD_PRELOAD cannot be preloaded: ignored. That's probably what's causing the problem, not the syscall warning. It looks like https://bugzilla.yoctoproject.org/show_bug.cgi?id=4843

Re: [OE-core] [PATCH 2/2] libdbm-sqlite-perl: add version 1.40

2013-08-08 Thread Hongxu Jia
On 08/08/2013 06:43 PM, Burton, Ross wrote: On 8 August 2013 10:01, Hongxu Jia hongxu@windriver.com wrote: DBD::SQLite is a Perl DBI driver for SQLite, that includes the entire thing in the distribution. So in order to get a fast transaction capable RDBMS working for your perl project you

Re: [OE-core] [PATCH 2/2] libdbm-sqlite-perl: add version 1.40

2013-08-08 Thread Burton, Ross
On 8 August 2013 12:06, Hongxu Jia hongxu@windriver.com wrote: It seems DBI is a commonly-used perl database support package, and work with multiple DBDs, the DBD::driver is based on actual database. We get sqlite in oe-core, so put them in oe-core. There are many perl packages that are

Re: [OE-core] [PATCH 2/2] libdbm-sqlite-perl: add version 1.40

2013-08-08 Thread Hongxu Jia
On 08/08/2013 07:12 PM, Burton, Ross wrote: On 8 August 2013 12:06, Hongxu Jia hongxu@windriver.com wrote: It seems DBI is a commonly-used perl database support package, and work with multiple DBDs, the DBD::driver is based on actual database. We get sqlite in oe-core, so put them in

[OE-core] Unhandled exception with BB_SIGNATURE_HANDLER=noop

2013-08-08 Thread Samuel Stirtzel
Hi, on the autobuilder I use, this error is currently blocking all nightly builds for some time: http://pastebin.com/RN6nJyPh The build is a normal nightly world build (these srcrevs are from 2013/08/01) $ bitbake -k world meta-angstrom = master:bed0c8c6abbf90730617a465839fde4374d2

Re: [OE-core] [PATCH 2/2] libdbm-sqlite-perl: add version 1.40

2013-08-08 Thread Olof Johansson
On 13-08-08 11:17 +0200, Hongxu Jia wrote: On 08/08/2013 05:06 PM, Olof Johansson wrote: The recipe is called libdbm-sqlite-perl, but the perl module is called DBD::SQLite. Is that intentional, and if so, why? I know what your mean, we should rename the recipe:

Re: [OE-core] [PATCH 2/2] libdbm-sqlite-perl: add version 1.40

2013-08-08 Thread Olof Johansson
On 13-08-08 13:35 +0200, Hongxu Jia wrote: Great, how about create a new layer named 'meta-perl', we sould do: ... - and than move other perl libraries already existed in oe-core to that layer, it includes: * meta/recipes-extended/perl/ * meta/recipes-devtools/perl/ I assume perl

Re: [OE-core] [PATCH 2/2] libdbm-sqlite-perl: add version 1.40

2013-08-08 Thread Burton, Ross
On 8 August 2013 14:08, Olof Johansson olof.johans...@axis.com wrote: I assume perl module recipes already in oecore are there for a reason, and we should perhaps avoid moving them, and just let meta-perl depend on oecore. Right? Yeah. It's worth reviewing them, but generally perl modules in

[OE-core] [PATCH 0/5] Package upgrades

2013-08-08 Thread Cristiana Voicu
Hi, Tests done: * build tested on AB running following nightlies: x86, x86_64, ppc, mips, arm; * checked with rpm if the packages were installed; basic functionality for kmod, systemtap, atk, mkfontscale and ed Thanks, Cristiana The following changes since commit

[OE-core] [PATCH 1/5] ed: upgrade to 1.9

2013-08-08 Thread Cristiana Voicu
LIC_FILES_CHKSUM changed because some lines were in addition in main.c file. Those lines are related to exit status. Signed-off-by: Cristiana Voicu cristiana.vo...@intel.com --- meta/recipes-extended/ed/{ed_1.8.bb = ed_1.9.bb} |7 +++ 1 file changed, 3 insertions(+), 4 deletions(-)

[OE-core] [PATCH 4/5] systemtap: upgrade to 2.3

2013-08-08 Thread Cristiana Voicu
Signed-off-by: Cristiana Voicu cristiana.vo...@intel.com --- meta/recipes-kernel/systemtap/systemtap_git.bb |2 -- meta/recipes-kernel/systemtap/systemtap_git.inc |4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb

[OE-core] [PATCH 2/5] mkfontscale: upgrade to 1.1.1

2013-08-08 Thread Cristiana Voicu
Signed-off-by: Cristiana Voicu cristiana.vo...@intel.com --- .../{mkfontscale_1.1.0.bb = mkfontscale_1.1.1.bb} |6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) rename meta/recipes-graphics/xorg-app/{mkfontscale_1.1.0.bb = mkfontscale_1.1.1.bb} (78%) diff --git

[OE-core] [PATCH 3/5] atk: upgrade to 2.9.3

2013-08-08 Thread Cristiana Voicu
Signed-off-by: Cristiana Voicu cristiana.vo...@intel.com --- .../atk/{atk_2.8.0.bb = atk_2.9.3.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-support/atk/{atk_2.8.0.bb = atk_2.9.3.bb} (79%) diff --git a/meta/recipes-support/atk/atk_2.8.0.bb

[OE-core] [PATCH 5/5] kmod: upgrade to 14

2013-08-08 Thread Cristiana Voicu
Made some changes on patches to apply correctly. Signed-off-by: Cristiana Voicu cristiana.vo...@intel.com --- meta/recipes-kernel/kmod/kmod-native_git.bb|1 - meta/recipes-kernel/kmod/kmod.inc |5 ++--- ...-man-page-generation-because-we-don-t-hav.patch | 21

[OE-core] [PATCH] oe-setup-builddir: substitute ##OEROOT## when using templates

2013-08-08 Thread Ross Burton
oe-setup-builddir substitutes ##COREBASE## which seems like it should have the same value as the variable ${COREBASE}. In reality it doesn't as ##COREBASE## is substituted with the value of $OEROOT (the location of the oe-init-build-env script), whereas ${COREBASE} is set by oe-core to the parent

Re: [OE-core] [PATCH] oe-setup-builddir: substitute ##OEROOT## when using templates

2013-08-08 Thread Gary Thomas
On 2013-08-08 08:14, Ross Burton wrote: oe-setup-builddir substitutes ##COREBASE## which seems like it should have the same value as the variable ${COREBASE}. In reality it doesn't as ##COREBASE## is substituted with the value of $OEROOT (the location of the oe-init-build-env script), whereas

Re: [OE-core] [PATCH] oe-setup-builddir: substitute ##OEROOT## when using templates

2013-08-08 Thread Burton, Ross
On 8 August 2013 15:41, Gary Thomas g...@mlbassoc.com wrote: Should these be here? No, that would be emacs being clever. Ross ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org

[OE-core] [PATCH][V2] oe-setup-builddir: substitute ##OEROOT## when using templates

2013-08-08 Thread Ross Burton
oe-setup-builddir substitutes ##COREBASE## which seems like it should have the same value as the variable ${COREBASE}. In reality it doesn't as ##COREBASE## is substituted with the value of $OEROOT (the location of the oe-init-build-env script), whereas ${COREBASE} is set by oe-core to the parent

[OE-core] [PATCH] wipe-sysroots: don't assume TMPDIR is under BUILDDIR

2013-08-08 Thread Ross Burton
The previous code used the environment variable BUILDDIR and assumed that TMPDIR was a subdirectory. This often isn't the case, so instead ask bitbake where the directories we're about to delete are. Signed-off-by: Ross Burton ross.bur...@intel.com --- scripts/wipe-sysroot | 22

[OE-core] [PATCH] tzcode: Fix up tzdata to 2013d

2013-08-08 Thread Saul Wold
Signed-off-by: Saul Wold s...@linux.intel.com --- meta/recipes-extended/tzcode/tzcode-native_2013d.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-extended/tzcode/tzcode-native_2013d.bb b/meta/recipes-extended/tzcode/tzcode-native_2013d.bb index

Re: [OE-core] [PATCH] tzcode: Fix up tzdata to 2013d

2013-08-08 Thread Laszlo Papp
Heh, good catch? :) On Thu, Aug 8, 2013 at 4:22 PM, Saul Wold s...@linux.intel.com wrote: Signed-off-by: Saul Wold s...@linux.intel.com --- meta/recipes-extended/tzcode/tzcode-native_2013d.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [OE-core] [PATCH] tzcode: Fix up tzdata to 2013d

2013-08-08 Thread Burton, Ross
On 8 August 2013 16:22, Saul Wold s...@linux.intel.com wrote: + ftp://ftp.iana.org/tz/releases/tzdata2013d.tar.gz;name=tzdata; Use ${PV} to avoid this in the future, or do they not update in sync? Ross ___ Openembedded-core mailing list

Re: [OE-core] [PATCH 3/5] atk: upgrade to 2.9.3

2013-08-08 Thread Burton, Ross
On 8 August 2013 14:46, Cristiana Voicu cristiana.vo...@intel.com wrote: Signed-off-by: Cristiana Voicu cristiana.vo...@intel.com --- .../atk/{atk_2.8.0.bb = atk_2.9.3.bb} |4 ++-- ATK is GNOME, so 2.[odd] are development releases. Drop this upgrade from the series and see if

[OE-core] [PATCH 0/1] systemtap: fix build failure on host system with dyninst installed

2013-08-08 Thread Victor Kamensky
Building systemap on Fedora 18 got the following failure DEBUG: Shell function do_configure finished DEBUG: Executing python function do_qa_configure NOTE: Checking autotools environment for common misconfiguration ERROR: This autoconf log indicates errors, it looked at host include and/or

[OE-core] [PATCH 1/1] systemtap: fix build failure on host system with dyninst installed

2013-08-08 Thread Victor Kamensky
On host system where dyninst installed (i.e Fedora 18 with SystemTap) builds fails with the error from do_qa_configure This autoconf log indicates errors, it looked at host include and/or library paths while determining system capabilities. Problematic config.log indicates inclusion of

[OE-core] [PATCH 2/2] seperatebuilddir: mesa now builds out of tree

2013-08-08 Thread Ross Burton
Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/conf/distro/include/seperatebuilddir.inc |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/conf/distro/include/seperatebuilddir.inc b/meta/conf/distro/include/seperatebuilddir.inc index 979f44b..eb19e0f 100644

[OE-core] [PATCH 1/2] mesa: fix out-of-tree builds when Gallium is enabled

2013-08-08 Thread Ross Burton
Signed-off-by: Ross Burton ross.bur...@intel.com --- .../mesa/0005-fix-out-of-tree-builds-gallium.patch | 42 meta/recipes-graphics/mesa/mesa_9.1.6.bb |1 + meta/recipes-graphics/mesa/mesa_git.bb |1 + 3 files changed, 44 insertions(+) create

Re: [OE-core] [PATCH] qt4: add upstream QTBUG-32534 patch for QHttpMultiPart upload corruption

2013-08-08 Thread Laszlo Papp
Btw, is it a common enough fix to be included, or otherwise you could just do your .bbappend appliance? On Sat, Aug 3, 2013 at 10:41 AM, Laszlo Papp lp...@kde.org wrote: OK, thanks. We need to be careful not to maintain all the 100-200+ patches they may have as it makes the update a bit

Re: [OE-core] [PATCH 2/2] seperatebuilddir: mesa now builds out of tree

2013-08-08 Thread Otavio Salvador
On Thu, Aug 8, 2013 at 1:29 PM, Ross Burton ross.bur...@intel.com wrote: Signed-off-by: Ross Burton ross.bur...@intel.com This should be squashed on 1/2 as one is dependant of another and in case of a revert both would need to be reverted. -- Otavio Salvador O.S.

Re: [OE-core] [oe-commits] Hongxu Jia : util-linux: use u-a for su

2013-08-08 Thread Martin Jansa
On Wed, Jul 31, 2013 at 05:51:35AM +, g...@git.openembedded.org wrote: Module: openembedded-core.git Branch: master Commit: 6190c69a9f78aeef951c39e4c8700e945bbec5f7 URL: http://git.openembedded.org/?p=openembedded-core.gita=commit;h=6190c69a9f78aeef951c39e4c8700e945bbec5f7 Author:

[OE-core] [PATCH 1/1] build-appliance-image: upgrade to ac60aa8cf707eec58e2cb51e7c406250d0b43ef1 commit.

2013-08-08 Thread Cristian Iorga
Fixes [YOCTO #4977]. Signed-off-by: Cristian Iorga cristian.io...@intel.com --- meta/recipes-core/images/build-appliance-image_8.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/images/build-appliance-image_8.0.bb

[OE-core] [PATCH 0/1] Build Appliance: Fix for YB4977

2013-08-08 Thread Cristian Iorga
The following changes since commit f63e7f4323368c0d6fe7a1d44393a7e15652d4f2: subversion: Add patch to use neon 0.30 (2013-08-07 07:43:47 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib ciorga/YB4977

Re: [OE-core] GCC PARALLEL_MAKE changed

2013-08-08 Thread Khem Raj
Vali On Aug 8, 2013, at 12:55 AM, Vali Cobelea valentin.cobe...@enea.com wrote: Hi, We noticed that the GCC parallel make flag (PARALLEL_MAKE, located in meta/recipes-devtools/gcc/gcc-cross-canadian_4.?.bb) got changed from -j 32 to simply nothing. We are wondering what was the reason

Re: [OE-core] [PATCH][V2] oe-setup-builddir: substitute ##OEROOT## when using templates

2013-08-08 Thread Khem Raj
On Aug 8, 2013, at 7:45 AM, Ross Burton ross.bur...@intel.com wrote: -KBRANCH_genericx86 = standard/common-pc/atom-pc +KBRANCH_genericx86 = standard/common-pc/genericx86 This seems to be unrelated to what you are doing with this commit. secondly this belongs to yocto mailing list not

[OE-core] [PATCH 1/3] v4l-utils: a new recipe

2013-08-08 Thread nitin . a . kamble
From: Nitin A Kamble nitin.a.kam...@intel.com The v4l-utils recipe provides v4l2-ctl and other tools, which help in understanding the configuration needed by v4l2 devices like a camera. This recipe is imported from meta-oe layer, and then updated and modified to work with the newest version.

[OE-core] [PATCH 0/3] RFC: few commits for a new machine feature: v4l2

2013-08-08 Thread nitin . a . kamble
From: Nitin A Kamble nitin.a.kam...@intel.com Here are few commits to add a new machine feature, v4l2. These commits provide: * A new recipe which provides tools to poke v4l2 config on the target * a new machine feature: v4l2 which brings a set of related packages. * modification to

[OE-core] [PATCH 2/3] packagegroup-base.bb: add a new machine feature: v4l2

2013-08-08 Thread nitin . a . kamble
From: Nitin A Kamble nitin.a.kam...@intel.com This new machine feature gives a choice to add the video for linux 2 drivers and related utilities to BSPs. Signed-off-by: Nitin A Kamble nitin.a.kam...@intel.com --- meta/recipes-core/packagegroups/packagegroup-base.bb | 8 1 file changed,

[OE-core] [PATCH 3/3] gst-meta-base: bring in the v4l2 related gst plugin

2013-08-08 Thread nitin . a . kamble
From: Nitin A Kamble nitin.a.kam...@intel.com If the v4l2 machine feature is enabled, then the v4l2 gstreamer plugin is also pulled in the gst-meta-base packages. Signed-off-by: Nitin A Kamble nitin.a.kam...@intel.com --- meta/recipes-multimedia/gstreamer/gst-meta-base_0.10.bb | 4 +++- 1 file

Re: [OE-core] [PATCH 3/3] gst-meta-base: bring in the v4l2 related gst plugin

2013-08-08 Thread Otavio Salvador
On Thu, Aug 8, 2013 at 6:34 PM, nitin.a.kam...@intel.com wrote: From: Nitin A Kamble nitin.a.kam...@intel.com If the v4l2 machine feature is enabled, then the v4l2 gstreamer plugin is also pulled in the gst-meta-base packages. Signed-off-by: Nitin A Kamble nitin.a.kam...@intel.com ---

Re: [OE-core] [PATCH 3/3] gst-meta-base: bring in the v4l2 related gst plugin

2013-08-08 Thread Kamble, Nitin A
-Original Message- From: otavio.salva...@gmail.com [mailto:otavio.salva...@gmail.com] On Behalf Of Otavio Salvador Sent: Thursday, August 08, 2013 2:57 PM To: Kamble, Nitin A Cc: Patches and discussions about the oe-core layer Subject: Re: [OE-core] [PATCH 3/3] gst-meta-base:

Re: [OE-core] [PATCH 3/3] gst-meta-base: bring in the v4l2 related gst plugin

2013-08-08 Thread Martin Jansa
On Thu, Aug 08, 2013 at 09:34:29PM +, nitin.a.kam...@intel.com wrote: From: Nitin A Kamble nitin.a.kam...@intel.com If the v4l2 machine feature is enabled, then the v4l2 gstreamer plugin is also pulled in the gst-meta-base packages. Signed-off-by: Nitin A Kamble

Re: [OE-core] State of bitbake world

2013-08-08 Thread Martin Jansa
On Thu, Jul 25, 2013 at 06:23:41PM +0200, Martin Jansa wrote: On Sat, Jun 22, 2013 at 08:16:56PM +0200, Martin Jansa wrote: On Tue, Jun 11, 2013 at 06:04:34PM +0200, Martin Jansa wrote: Last week hero Khem, sent many world fixes, but it seems like some fixes weren't enough (tk,

Re: [OE-core] [PATCH 3/3] gst-meta-base: bring in the v4l2 related gst plugin

2013-08-08 Thread Kamble, Nitin A
-Original Message- From: Martin Jansa [mailto:martin.ja...@gmail.com] Sent: Thursday, August 08, 2013 3:37 PM To: Kamble, Nitin A Cc: Openembedded-core@lists.openembedded.org Subject: Re: [OE-core] [PATCH 3/3] gst-meta-base: bring in the v4l2 related gst plugin On Thu, Aug 08,

Re: [OE-core] [PATCH 5/5] kmod: upgrade to 14

2013-08-08 Thread Saul Wold
On 08/08/2013 06:46 AM, Cristiana Voicu wrote: Made some changes on patches to apply correctly. Seems to be an issue with building the kmod-native_git Autobuilder failed to build this, one example:

Re: [OE-core] [PATCH 1/2] mesa: fix out-of-tree builds when Gallium is enabled

2013-08-08 Thread Saul Wold
On 08/08/2013 09:29 AM, Ross Burton wrote: Signed-off-by: Ross Burton ross.bur...@intel.com --- .../mesa/0005-fix-out-of-tree-builds-gallium.patch | 42 meta/recipes-graphics/mesa/mesa_9.1.6.bb |1 + meta/recipes-graphics/mesa/mesa_git.bb |

[OE-core] [PATCH]lsof: avoid creating directory ${DL_DIR}/${WORKDIR}/lsof_${PV}

2013-08-08 Thread Bian Naimeng
lsof: avoid creating directory ${DL_DIR}/${WORKDIR}/lsof_${PV}. Set LOCALSRC as SRC_URI will make do_unpack mkdir ${DL_DIR}/${WORKDIR}/lsof_${PV}, it's not good while multiuser sharing ${DL_DIR}. Signed-off-by: Bian Naimeng bia...@cn.fujitsu.com --- meta/recipes-extended/lsof/lsof_4.87.bb |