Re: [OE-core] [PATCH 6/6] mtd-utils: add PV variable into recipe

2013-07-12 Thread Saul Wold
On 07/12/2013 08:10 AM, Emilia Ciobanu wrote: Git packages should include git token inside the PV variable. Signed-off-by: Emilia Ciobanu --- meta/recipes-devtools/mtd/mtd-utils_1.5.0.bb |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/mtd/mtd-util

[OE-core] Make package from initramfs image

2013-07-12 Thread Yevhen Kyriukha
Hi! I want to build package from initramfs image for putting it into /boot directory and have ability of its upgrade. The problem is do_install, do_package and other functions needed to create package are not called. How can I make it? Best regards, Yevhen ___

Re: [OE-core] [PATCH 0/6] Fix typos

2013-07-12 Thread Saul Wold
On 07/12/2013 08:10 AM, Emilia Ciobanu wrote: Add/Update PV variable into git recipes Have you checked that these change and the other do not cause packages to go backwards? We need to make sure on-target updates still work correctly. Please send an updated patch set consolidating all you

Re: [OE-core] [PATCH 2/4] lttng-modules: rename recipe

2013-07-12 Thread Saul Wold
On 07/09/2013 01:57 AM, Emilia Ciobanu wrote: Git packages should have _git in their recipe name and should include git token inside the PV variable. This is not really renaming the recipe, it's adding git to PV, please fix the commit summary. Thanks Sau! Signed-off-by: Emilia Cioba

Re: [OE-core] [PATCH] pseudo: pseudo-native breaks native builds for symver.patch

2013-07-12 Thread Peter Seebach
On Fri, 12 Jul 2013 02:10:21 + Guo Chunrong-B40290 wrote: > Powerpc architecture and ppc64 hosts. Okay. We haven't previously tried pseudo on those that I know of. We may need to revisit the way this patch gets applied. For the short term, it might be possible to apply it only to x86 or x86_

Re: [OE-core] [CONSOLIDATED PULL 00/27] REVIEWED & READY

2013-07-12 Thread Paul Eggleton
On Friday 12 July 2013 10:16:45 Saul Wold wrote: > Richard, > > Poss and Paul have reviewed this set and either acked the > last email or will ack this one. > > I removed Stefan's change from this one, since he posted a new set for > weekend review. This also includes the updated distrodata (v3)

[OE-core] [CONSOLIDATED PULL 00/27] REVIEWED & READY

2013-07-12 Thread Saul Wold
Richard, Poss and Paul have reviewed this set and either acked the last email or will ack this one. I removed Stefan's change from this one, since he posted a new set for weekend review. This also includes the updated distrodata (v3) from Ema Please take the 2 items for Poky also from Tom and Em

Re: [OE-core] [PATCH 0/1]package_rpm.bbclass: remove xx.spec before doing rpmbuild xx.src.rpm

2013-07-12 Thread Paul Eggleton
Hi Bian, On Friday 12 July 2013 10:04:56 Bian Naimeng wrote: > said the following on 2013-7-11 18:54:, Burton, Ross wrote: > > On 10 July 2013 03:56, Bian Naimeng wrote: > >> Sorry, it looks like i should post this patch to poky. please ignore this > > > > You were right the first time, meta/ is

Re: [OE-core] [CONSOLIDATED PULL 00/30] PENDING FINAL REVIEW

2013-07-12 Thread Stanacar, StefanX
On Thu, 2013-07-11 at 18:23 -0700, Saul Wold wrote: > > Stanacar, StefanX (2): > lib/oeqa/runtime/dmesg.py: whitelist dmesg message for systemd net > interface name > lib/oeqa/utils/qemurunner.py: increase boot timeout > > Stefan Stanacar (1): > lib/oeqa/utils/sshcontrol.py: fix pass

[OE-core] [PATCH 5/8] lib/oeqa/oetest.py: provide a ps command for all tests

2013-07-12 Thread Stefan Stanacar
Many tests will use 'ps' but we need to know if it's busybox or standard ps. Drop the existing check from the connman test. Signed-off-by: Stefan Stanacar --- meta/lib/oeqa/oetest.py | 5 ++--- meta/lib/oeqa/runtime/connman.py | 5 - 2 files changed, 2 insertions(+), 8 deletions(-)

[OE-core] [PATCH 7/8] classes/testimage.bbclass: use a copy of rootfs for tests

2013-07-12 Thread Stefan Stanacar
Make a copy of the rootfs and test that. We can now drop the snapshot option. Signed-off-by: Stefan Stanacar --- meta/classes/testimage.bbclass| 9 - meta/lib/oeqa/utils/qemurunner.py | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/meta/classes/testimage.bbclas

[OE-core] [PATCH 3/8] testimage.bbclass, lib/oeqa/utils/qemurunner.py: make boot timeout configurable and increase it

2013-07-12 Thread Stefan Stanacar
On a loaded host (such as an AB setup where multiple builds run) the 200 seconds timeout might not be enough to reach the login prompt. Also make it configurable so we can set it from local.conf/auto.conf Signed-off-by: Stefan Stanacar --- meta/classes/testimage.bbclass| 6 ++ meta/lib/

[OE-core] [PATCH 8/8] testimage.bbclass, lib/oeqa: add headers and comments

2013-07-12 Thread Stefan Stanacar
Adds some comments to testimage.bbclass and the files it calls, just to give an ideea of what it does. Signed-off-by: Stefan Stanacar --- meta/classes/testimage.bbclass| 24 meta/lib/oeqa/oetest.py | 9 + meta/lib/oeqa/utils/decorators.py | 8

[OE-core] [PATCH 1/8] lib/oeqa/runtime/dmesg.py: whitelist dmesg message for systemd net interface name

2013-07-12 Thread Stefan Stanacar
Messages such as: "systemd-udevd[79]: error changing net interface name eth0 to enp0s3: Device or resource busy" are harmless as systemd can't rename interfaces in qemu (the interface is already active). Alternatively, passing net.ifnames=0 to the kernel will stop systemd renaming the interfaces

[OE-core] [PATCH 2/8] lib/oeqa/utils/sshcontrol.py: fix passing command to subprocess

2013-07-12 Thread Stefan Stanacar
Don't use shlex.split in subprocess call and also prepend . /etc/profile, because PATH over ssh is always /usr/bin:/bin which isn't what many tests expect. Changed in v2: We now need to use a separate call for scp command. Signed-off-by: Stefan Stanacar --- meta/lib/oeqa/utils/sshcontrol.py |

[OE-core] [PATCH 6/8] lib/oeqa/runtime: add tests for syslog and df

2013-07-12 Thread Stefan Stanacar
From: Alexandru Palalau Signed-off-by: Alexandru Palalau Signed-off-by: Stefan Stanacar --- meta/classes/testimage.bbclass | 4 ++-- meta/lib/oeqa/runtime/df.py | 13 + meta/lib/oeqa/runtime/syslog.py | 34 ++ 3 files changed, 49 insertions(+),

[OE-core] [PATCH 4/8] lib/oeqa/runtime/multilib.py: use readelf instead of file

2013-07-12 Thread Stefan Stanacar
file was pulled by rpm in sato images, readelf comes with binutils so it's in ipk/deb too. Also the test was looking at connmand instead of connman-applet (which is what the testcase says and the AB nightly-multilib target installs) Signed-off-by: Stefan Stanacar --- meta/lib/oeqa/runtime/multil

[OE-core] [PATCH 0/8] Some fixes for the testimage class

2013-07-12 Thread Stefan Stanacar
Hello, Some fixes for the testimage.bbclass and tests. Also two new tests. First two patches in the series have already been sent to ML, these are the same. The third one is a modified version of a patch already sent. The rest of them are new and the should be safe :). Cheers, Stefan The foll

Re: [OE-core] [PATCH] sudo upgrade to 1.8.7

2013-07-12 Thread Saul Wold
On 07/12/2013 06:28 AM, Andrei Dinu wrote: upgrade from 1.8.6p8 -> 1.8.7 - removed libtool.patch - contained upstream - new files checksum from year change ( 2012 -> 2013 ) Signed-off-by: Andrei Dinu --- meta/recipes-extended/sudo/files/libtool.patch | 42 meta/re

Re: [OE-core] [PATCH] [v2] openssh: Enabling with systemd

2013-07-12 Thread Burton, Ross
On 11 July 2013 19:32, Saul Wold wrote: >> We are seeing different checks for different recipes. Do you guys think >> that it is possible to handle them in bbclass. >> > How different are they, there is the DISTRO_FEATURE check and then typically > the service file or the init file is sed'ed and i

Re: [OE-core] [PATCH 5/5] bluez5: Set udev variables using pkg-config

2013-07-12 Thread Burton, Ross
On 12 July 2013 15:06, Cristian Iorga wrote: > + --with-udevrulesdir=`pkg-config --variable=udevdir udev`/rules.d \ Again this commit should be squashed, but if we're doing this line in particular then we're negating the point of fix-udev-paths.patch introduced in 1/5. Drop the patch and this a

Re: [OE-core] [PATCH 4/5] bluez5: add readline dependency

2013-07-12 Thread Burton, Ross
On 12 July 2013 15:06, Cristian Iorga wrote: > From: Alexandru DAMIAN > > bluez5 uses readline to be build, but the dependency is not listed > This is listed in the configuration log. > So we add it. > > Signed-off-by: Cristian Iorga Squash this too. Ross __

Re: [OE-core] [PATCH 3/5] bluez5: upgrade to v5.7

2013-07-12 Thread Burton, Ross
Please squash this into the commit that introduces bluez5. Ross ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-core

Re: [OE-core] [PATCH 2/5] bluez4: conflicts with/replaces bluez5

2013-07-12 Thread Burton, Ross
On 12 July 2013 15:44, Cristian Iorga wrote: > -PR = "r5" > +PR = "r6" No need for PR bump. Ross ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-core

[OE-core] [PATCH 3/6] hwlatdetect: add PV variable into recipe

2013-07-12 Thread Emilia Ciobanu
Git packages should include git token inside the PV variable. Signed-off-by: Emilia Ciobanu --- meta/recipes-rt/rt-tests/hwlatdetect_0.85.bb |1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-rt/rt-tests/hwlatdetect_0.85.bb b/meta/recipes-rt/rt-tests/hwlatdetect_0.85.bb index 6

[OE-core] [PATCH 5/6] connman-gnome: add PV variable into recipe

2013-07-12 Thread Emilia Ciobanu
Git packages should include git token inside the PV variable. Signed-off-by: Emilia Ciobanu --- .../connman/connman-gnome_0.7.bb |2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-connectivity/connman/connman-gnome_0.7.bb b/meta/recipes-connectivity/connman/

[OE-core] [PATCH 6/6] mtd-utils: add PV variable into recipe

2013-07-12 Thread Emilia Ciobanu
Git packages should include git token inside the PV variable. Signed-off-by: Emilia Ciobanu --- meta/recipes-devtools/mtd/mtd-utils_1.5.0.bb |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/mtd/mtd-utils_1.5.0.bb b/meta/recipes-devtools/mtd/mtd-utils_

[OE-core] [PATCH 4/6] lttng-ust: add PV variable into recipe

2013-07-12 Thread Emilia Ciobanu
Git packages should include git token inside the PV variable. Signed-off-by: Emilia Ciobanu --- meta/recipes-kernel/lttng/lttng-ust_2.2.0.bb |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-kernel/lttng/lttng-ust_2.2.0.bb b/meta/recipes-kernel/lttng/lttng-ust_

[OE-core] [PATCH 2/6] kmod: add PV variable into recipe

2013-07-12 Thread Emilia Ciobanu
Git packages should include git token inside the PV variable. Signed-off-by: Emilia Ciobanu --- meta/recipes-kernel/kmod/kmod_git.bb |1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-kernel/kmod/kmod_git.bb b/meta/recipes-kernel/kmod/kmod_git.bb index ca6b004..6afaca6 100644 -

[OE-core] [PATCH 0/6] Fix typos

2013-07-12 Thread Emilia Ciobanu
Add/Update PV variable into git recipes The following changes since commit a63229917a5708de2d161aba0d67168ce0da6365: meta-yocto-bsp: update reference board SRCREVs (2013-07-10 09:45:51 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib emac/add_pv_to_reci

[OE-core] [PATCH 1/6] rt-tests: add PV variable into recipe

2013-07-12 Thread Emilia Ciobanu
Git packages should include git token inside the PV variable. Signed-off-by: Emilia Ciobanu --- meta/recipes-rt/rt-tests/rt-tests_0.85.bb |1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-rt/rt-tests/rt-tests_0.85.bb b/meta/recipes-rt/rt-tests/rt-tests_0.85.bb index c3964d2..5

[OE-core] [PATCH 0/5] bluez: v5.7 experimental packages

2013-07-12 Thread Cristian Iorga
This sets of patches adds bluez5 recipes as experimental packages. BlueZ 5.X is not an upgrade for Bluez 4.x, as such, no upgrade is provided/possible. The two versions of the BT stack also conflicts each other. The following changes since commit a63229917a5708de2d161aba0d67168ce0da6365: meta-y

[OE-core] [PATCH 1/5] bluez5: new package for v5.3

2013-07-12 Thread Cristian Iorga
- bluez5 does not replace bluez4 - bluez5 is integrated with systemd - RCONFLICTS/RREPLACES bluez4 Signed-off-by: Cristian Iorga --- .../bluez5/bluez5-5.4/bluetooth.conf | 16 +++ .../bluez5/bluez5-5.4/fix-udev-paths.patch | 35 +++ meta/recipes-connecti

[OE-core] [PATCH 3/5] bluez5: upgrade to v5.7

2013-07-12 Thread Cristian Iorga
Signed-off-by: Cristian Iorga --- .../bluez5/{bluez5-5.4 => bluez5-5.7}/bluetooth.conf |0 .../bluez5/{bluez5-5.4 => bluez5-5.7}/fix-udev-paths.patch |0 meta/recipes-connectivity/bluez5/{bluez5_5.4.bb => bluez5_5.7.bb} |4 ++-- 3 files changed, 2 insertions(+),

[OE-core] [PATCH 2/5] bluez4: conflicts with/replaces bluez5

2013-07-12 Thread Cristian Iorga
- RCONFLICTS/RREPLACES bluez5 Signed-off-by: Cristian Iorga --- meta/recipes-connectivity/bluez/bluez4_4.101.bb |5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta/recipes-connectivity/bluez/bluez4_4.101.bb b/meta/recipes-connectivity/bluez/bluez4_4.101.bb index f48a

[OE-core] [PATCH 4/5] bluez5: add readline dependency

2013-07-12 Thread Cristian Iorga
From: Alexandru DAMIAN bluez5 uses readline to be build, but the dependency is not listed This is listed in the configuration log. So we add it. Signed-off-by: Cristian Iorga --- meta/recipes-connectivity/bluez5/bluez5.inc |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) d

[OE-core] [PATCH 5/5] bluez5: Set udev variables using pkg-config

2013-07-12 Thread Cristian Iorga
From: Richard Purdie Signed-off-by: Cristian Iorga --- meta/recipes-connectivity/bluez5/bluez5.inc|4 ++-- meta/recipes-connectivity/bluez5/bluez5_5.7.bb |2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/recipes-connectivity/bluez5/bluez5.inc b/meta/recipes

[OE-core] [PATCH v3 1/1] distrodata.bbaclass: change in git and svn package reporting

2013-07-12 Thread Emilia Ciobanu
For git packages the Package Reporting System should always report the latest HEAD. For svn packages the new version reporting has the following format: version+svn[r|-]revision Signed-off-by: Emilia Ciobanu --- meta/classes/distrodata.bbclass | 79 +

[OE-core] [PATCH v3 0/1] Changes in git and svn package reporting

2013-07-12 Thread Emilia Ciobanu
The following changes since commit a63229917a5708de2d161aba0d67168ce0da6365: meta-yocto-bsp: update reference board SRCREVs (2013-07-10 09:45:51 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib emac/distrodata_git_svn_version_report_pattern http://gi

[OE-core] [PATCH 5/5] bluez5: Set udev variables using pkg-config

2013-07-12 Thread Cristian Iorga
From: Richard Purdie Signed-off-by: Cristian Iorga --- meta/recipes-connectivity/bluez5/bluez5.inc|4 ++-- meta/recipes-connectivity/bluez5/bluez5_5.7.bb |2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/recipes-connectivity/bluez5/bluez5.inc b/meta/recipes

[OE-core] [PATCH 4/5] bluez5: add readline dependency

2013-07-12 Thread Cristian Iorga
From: Alexandru DAMIAN bluez5 uses readline to be build, but the dependency is not listed This is listed in the configuration log. So we add it. Signed-off-by: Cristian Iorga --- meta/recipes-connectivity/bluez5/bluez5.inc |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) d

[OE-core] [PATCH 2/5] bluez4: conflicts with/replaces bluez5

2013-07-12 Thread Cristian Iorga
- RCONFLICTS/RREPLACES bluez5 Signed-off-by: Cristian Iorga --- meta/recipes-connectivity/bluez/bluez4_4.101.bb |5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta/recipes-connectivity/bluez/bluez4_4.101.bb b/meta/recipes-connectivity/bluez/bluez4_4.101.bb index f48a

[OE-core] [PATCH 3/5] bluez5: upgrade to v5.7

2013-07-12 Thread Cristian Iorga
Signed-off-by: Cristian Iorga --- .../bluez5/{bluez5-5.4 => bluez5-5.7}/bluetooth.conf |0 .../bluez5/{bluez5-5.4 => bluez5-5.7}/fix-udev-paths.patch |0 meta/recipes-connectivity/bluez5/{bluez5_5.4.bb => bluez5_5.7.bb} |4 ++-- 3 files changed, 2 insertions(+),

[OE-core] [PATCH 0/5] BlueZ 5 experimental recipes

2013-07-12 Thread Cristian Iorga
This sets of patches adds bluez5 recipes as experimental packages. BlueZ 5.X is not an upgrade for Bluez 4.x, as such, no upgrade is provided/possible. The two versions of the BT stack also conflicts each other. Alexandru DAMIAN (1): bluez5: add readline dependency Cristian Iorga (3): bluez5:

[OE-core] [PATCH 1/5] bluez5: new package for v5.3

2013-07-12 Thread Cristian Iorga
- bluez5 does not replace bluez4 - bluez5 is integrated with systemd - RCONFLICTS/RREPLACES bluez4 Signed-off-by: Cristian Iorga --- .../bluez5/bluez5-5.4/bluetooth.conf | 16 +++ .../bluez5/bluez5-5.4/fix-udev-paths.patch | 35 +++ meta/recipes-connecti

Re: [OE-core] [PATCH] sudo upgrade to 1.8.7

2013-07-12 Thread Martin Jansa
On Fri, Jul 12, 2013 at 04:28:22PM +0300, Andrei Dinu wrote: > upgrade from 1.8.6p8 -> 1.8.7 > > - removed libtool.patch - contained upstream > - new files checksum from year change ( 2012 -> 2013 ) Please add PACKAGECONFIG for zlib when you're on it. now it autodetects zlib from sysroot. > Si

[OE-core] [PATCH] sudo upgrade to 1.8.7

2013-07-12 Thread Andrei Dinu
upgrade from 1.8.6p8 -> 1.8.7 - removed libtool.patch - contained upstream - new files checksum from year change ( 2012 -> 2013 ) Signed-off-by: Andrei Dinu --- meta/recipes-extended/sudo/files/libtool.patch | 42 meta/recipes-extended/sudo/sudo.inc|

Re: [OE-core] [CONSOLIDATED PULL 00/30] PENDING FINAL REVIEW

2013-07-12 Thread Burton, Ross
On 12 July 2013 02:23, Saul Wold wrote: > nss: create checksum files for the nss libraries I wonder why this can't be done using nss-native, but there's probably a good reason. Acked-by: Ross Burton Ross ___ Openembedded-core mailing list Openembed

Re: [OE-core] [PATCH 4/5] nss: create checksum files for the nss libraries

2013-07-12 Thread Hongxu Jia
On 07/12/2013 08:39 PM, Burton, Ross wrote: On 10 July 2013 09:03, Hongxu Jia wrote: Add checksum files required for the NSS softoken to operate in FIPS 140 mode. The shlibsign is invoked to sign the libraries, and it is built for the target architecture and doesn't support cross-compiling so f

Re: [OE-core] [PATCH 4/5] nss: create checksum files for the nss libraries

2013-07-12 Thread Burton, Ross
On 10 July 2013 09:03, Hongxu Jia wrote: > Add checksum files required for the NSS softoken to operate in FIPS 140 mode. > The shlibsign is invoked to sign the libraries, and it is built for the target > architecture and doesn't support cross-compiling so far. > > Invoke shlibsign at target's firs

[OE-core] [PATCH v3 0/1] xinput-calibrator: move it from meta-oe to oe-core (cover letter only)

2013-07-12 Thread Laurentiu Palcu
Changes in v3: * do not install pointercal.xinput if it's the default one; Changes in v2: * run calibration through xsession file; * allow normal user to write his calibration data to ~/.pointercal/pointercal.xinput and then use it when system boots; Laurentiu The following changes since

[OE-core] [PATCH v2 0/1] Changes in git and svn package reporting

2013-07-12 Thread Emilia Ciobanu
The following changes since commit a63229917a5708de2d161aba0d67168ce0da6365: meta-yocto-bsp: update reference board SRCREVs (2013-07-10 09:45:51 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib emac/distrodata_git_svn_version_report_pattern http://gi

[OE-core] [PATCH 1/1] distrodata.bbaclass: change in git and svn package reporting

2013-07-12 Thread Emilia Ciobanu
For git packages the Package Reporting System should always report the latest HEAD. For svn packages the new version reporting has the following format: version+svn[r|-]revision Signed-off-by: Emilia Ciobanu --- meta/classes/distrodata.bbclass | 79 +

[OE-core] [PATCH 1/6] pmount: add version 0.9.23

2013-07-12 Thread Hongxu Jia
The pmount is a wrapper around the standard mount program which permits normal users to mount removable devices without a matching /etc/fstab entry. Add option -f to mount already mounted device, while option -f is used, if the device has already been mounted, it will umount the exist mountpoint a

[OE-core] [PATCH 5/6] pmount: allow users in disk group to perform pmount/pumount

2013-07-12 Thread Hongxu Jia
* changed ownership group for /usr/bin/pmount and /usr/bin/pumount to 'disk'; * deny execution rights to other users except 'root' and those belonging to 'disk' group; * set setuid bit to both apps; So, basically, in order for a normal user to be able to pmount/pumount the device, it must be a m

[OE-core] [PATCH 3/6] udev-extraconf:fix xuser write to usb storage failed

2013-07-12 Thread Hongxu Jia
Rootless X is owned by xuser, the problem is xuser doesn't have permissions to write usb storage when the type of filesystem is vfat. ... $ mount /dev/sdb1 on /media/sdb1 type vfat ... $ ls /media/ -al drwxr-xr-x2 root root 16384 Jan 1 1970 sdb1 ... The usb storage is mounted to

[OE-core] [PATCH 2/6] atom-pc:fix xuser write to usb storage failed

2013-07-12 Thread Hongxu Jia
Add package pmount to atom-pc, the normal user could invoke pmount to mount storage device and would have permissions to access it. [YOCTO #4004] Signed-off-by: Hongxu Jia --- meta-yocto-bsp/conf/machine/atom-pc.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-yocto-bsp/conf/machin

[OE-core] [PATCH 6/6] xuser-account: add xuser to disk group

2013-07-12 Thread Hongxu Jia
In order for xuser to be able to perform pmount/pumount. Signed-off-by: Hongxu Jia --- meta/recipes-support/user-creation/xuser-account_0.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-support/user-creation/xuser-account_0.1.bb b/meta/recipes-support/user-

[OE-core] [PATCH 4/6] udev: fix invoking pmount failed based on sysvinit

2013-07-12 Thread Hongxu Jia
The pmount is invoked in the udev's mount.sh script, and it needs the existence of `/var/lock', `/var/lock' is symlinked to `/run/lock'. When the system is based on sysvinit, `/run/lock' is created by populate- volatile.sh, if the udev service starts before populate-volatile.sh starts, `/var/lock'

[OE-core] [PATCH 0/6] fix xuser write to usb storage failed

2013-07-12 Thread Hongxu Jia
Test Case * Steps 1) preparation ... one target: atom-pc two usb sticks: one for boot and install, another for plug test, they are both vfat filesystem. ... 2) config conf/local.conf: ... MACHINE ?= "atom-pc" ... 3) build image bitbake core-image-sato 4) load image to atom-pc Test Case TC-292

Re: [OE-core] [PATCH 1/1 v2] kbd: Limit the kbdrate application to x86, mips and sparc

2013-07-12 Thread Phil Blundell
On Fri, 2013-07-12 at 13:42 +0800, jackie.hu...@windriver.com wrote: > The code relies on hardware specific memory locations to access > and modify the keyboard repeat rate. It also requires read/write > access to /dev/port which doesn't exist on every architecture's > root fs. The defect was rais