[OE-core] [PATCH] slang: change char type to signed char in macros

2012-07-10 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Fix [YOCTO 2726] C language has 3 distinct char types: char unsigned char signed char A char has the same range of values as signed char on X86, but same as unsigned char on ARM which made Slang's typecast() and array_sort()

[OE-core] [PATCH] watchdog: fix ping mode failure

2012-07-17 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com [YOCTO #2755] When watchdog works on ping mode, the system will be rebooted since watchdog can not receive the expected ECOREPLY on a setting interval. Ping mode uses a raw socket to send a ECO packet, then uses select() to wait and recvfrom() to receive

[OE-core] [v2 PATCH] watchdog: fix ping mode failure

2012-07-17 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com [YOCTO #2755] When watchdog works on ping mode, the system will be rebooted since watchdog can not receive the expected ECOREPLY on a setting interval. Ping mode uses a raw socket to send a ECO packet, then uses select() to wait and recvfrom() to receive

[OE-core] [PATCH v2] slang: change char type to signed char in macros

2012-07-17 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Fix [YOCTO 2726] C language has 3 distinct char types: char unsigned char signed char A char has the same range of values as signed char on X86, but same as unsigned char on ARM which made Slang's typecast() and array_sort()

[OE-core] [PATCH] slang: add header to patch

2012-07-17 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Add description, Signed-off-by and Upstream-Status to change-char-type-to-signed-char-in-macros.patch Signed-off-by: Roy.Li rongqing...@windriver.com --- ...change-char-type-to-signed-char-in-macros.patch | 16 1 files changed, 16

[OE-core] [PATCH] busybox:udhcpc: fix the root_is_nfs() function

2012-07-21 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com [YOCTO #2788] The system will be hung when udhcpc starts, if nfs is mounted at / directory and default route is different after starting udhcpc. The cause is that root_is_nfs() does not work after kernel-2.6.37, since the device name has been changed from

[OE-core] [PATCH v2] busybox:udhcpc: fix the root_is_nfs() function

2012-07-23 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com [YOCTO #2788] The system will be hung when udhcpc starts, if nfs is mounted at / directory and default route is different after starting udhcpc. The cause is that root_is_nfs() does not work after kernel-2.6.37, since the device name has been changed from

[OE-core] [PATCH] insserv: define do_install_virtclass-native()

2012-07-23 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com [YOCTO #2812] Since files installation dirs are DESTDIR/etc/, DESTDIR/sbin etc in Makefile, not DESTDIR/${sysconfdir}/, DESTDIR/${sbindir}/, for the native package, a prefix can not be inserted which is needed when do the next step of install and

[OE-core] [PATCH] slang 2.2.4: fix the pcre existence checking

2012-07-25 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com [YOCTO #2820] when check if there is pcre, the configure file always check the host dir. now we make it work by adding correct prefix for cross-compile environment. Signed-off-by: Roy.Li rongqing...@windriver.com --- .../slang/slang/fix-check-pcre.patch

[OE-core] [PATCH 1/1] socat 1.7.2: add readline dependency

2012-07-27 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com [YOCTO #2844] socat has dependency on readline Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/recipes-connectivity/socat/socat_1.7.2.0.bb |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git

[OE-core] [PATCH 1/1] usbutils 0.91: Fix NULL pointer crash.

2012-07-27 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com [YOCTO #2847] Before use usbbuslist, we should check if it is valid. Signed-off-by: Roy.Li rongqing...@windriver.com --- .../usbutils/usbutils/Fix-NULL-pointer-crash.patch | 28 meta/recipes-bsp/usbutils/usbutils_0.91.bb |

[OE-core] [PATCH] perf-3.4: fix hardcoded slang include dir

2012-07-30 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com [YOCTO #2853] Sysroot in CFLAGS can not pass into Makefile, and slang include dir becomes the hardcoded host dir, fix it by using STAGING_INCDIR. And add dependency on slang Signed-off-by: Roy.Li rongqing...@windriver.com ---

[OE-core] [PATCH] slang: change char type to signed char in macros

2012-07-30 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com [YOCTO 2726] The patch of converting char type to signed char is only applied to arm, in fact it should be applied to powerpc too since powerpc has the same assumption for char type. To x86 and mips, this patch has not impact. Signed-off-by: Roy.Li

[OE-core] [PATCH v2] slang: change char type to signed char in macros

2012-07-31 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com [YOCTO 2726] The patch of converting char type to signed char is only applied to arm, in fact it should be applied to powerpc too since powerpc has the same assumption for char type. To x86 and mips, this patch has not impact. Signed-off-by: Roy.Li

[OE-core] [PATCH] busybox: fix du-k-works test case

2012-08-05 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com [YOCTO #2896] The du-k-works test seems to assume that du -k on a directory with two files totaling 80 kilobytes should report either 80k or 88k. In ext4 filesystm however, both busybox' du -k and coreutils' du -k reports a size of 84k which causes the

[OE-core] [PATCH] bitbake: compile tar-replacement firstly

2012-08-07 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Compiling tar-replacement or not is decided by version of host tar, if the host tar version is lower than 1.23, Compiling tar-replacement is needed. When doing popoluate tar-replacement sysroot to write the tar to sysroot, but writing is not finished. other

[OE-core] [PATCH] qemu: backport patch to fix pl031 RTC

2012-08-07 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Intergrate the patch from: http://repo.or.cz/w/qemu.git/commit/13a16f1d91fc7a46b65b22a33f6ffea1b826a097 Signed-off-by: Roy.Li rongqing...@windriver.com --- ...-Actually-raise-interrupt-on-timer-expiry.patch | 41

[OE-core] [PATCH] subversion: two small fixes

2012-08-13 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Add missing build dependency on sqlite3 Disable Ruby checking. we do not have Ruby, and subversion always checks ruby on host which leads to build error when ruby-dev is installed on host. Signed-off-by: Roy.Li rongqing...@windriver.com ---

[OE-core] [PATCH 0/1] socat enable termios

2013-06-05 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 9ba812ab1f613d28f9eb3192d2ff1a34dfce33e4: binutils: fix compile error of complex expressions before @l/@h (2013-06-03 16:46:37 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib

[OE-core] [PATCH 1/1] socat: enable termios

2013-06-05 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com fix two cross-compile issue to enable termios Signed-off-by: Roy.Li rongqing...@windriver.com --- .../socat/files/fix-xxx_SHIFT-autoheader.patch | 40 + .../socat/files/fix_termios.patch | 85

[OE-core] [PATCH 1/1] socat: enable termios

2013-06-06 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com fix two cross-compile issue to enable termios: 1. Define ac_cv_ispeed_offset in EXTRA_OECONF to avoid to call AC_TRY_RUN() on cross-compile environment. 2. fix autoheader to generate *_SHIFT macros Signed-off-by: Roy.Li rongqing...@windriver.com ---

[OE-core] [PATCH 0/1 v2] socat: enable termios

2013-06-06 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 9ba812ab1f613d28f9eb3192d2ff1a34dfce33e4: binutils: fix compile error of complex expressions before @l/@h (2013-06-03 16:46:37 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib

[OE-core] [PATCH 0/1] openssh: three fixes

2013-06-06 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 9ba812ab1f613d28f9eb3192d2ff1a34dfce33e4: binutils: fix compile error of complex expressions before @l/@h (2013-06-03 16:46:37 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib

[OE-core] [PATCH 1/1] openssh: three fixes

2013-06-06 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com 1. fix a alignment issue on ARM v7 NEON cpu 2. fix a empty passwd issue 3. enable tcp-wrappers by default Signed-off-by: Roy.Li rongqing...@windriver.com --- .../openssh-6.2p1/mac_compute-alignment.patch | 39

[OE-core] [PATCH 0/1] ppp: add default configuration files

2013-06-06 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 9ba812ab1f613d28f9eb3192d2ff1a34dfce33e4: binutils: fix compile error of complex expressions before @l/@h (2013-06-03 16:46:37 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib

[OE-core] [PATCH 1/1] PPP: add default configuration file and fix hard-coded CFLAGS

2013-06-06 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com 1. Add three ppp configuration files, make /etc/init.d/ppp start be able to work with little change. provider and pap are adopted from Ubuntu. ppp_on_boot is adopted from http://www.wlug.org.nz. 2. Use build system CFLAGS when compiling Signed-off-by:

[OE-core] [PATCH 1/1] trace-cmd: backport three patches

2013-06-06 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Backport three patches to fix running issues. Signed-off-by: Roy.Li rongqing...@windriver.com --- ...dd-checks-for-invalid-pointers-to-fix-seg.patch | 61 + ...o-not-call-stop_threads-if-doing-latency-.patch | 38

[OE-core] [PATCH 0/1] trace-cmd: backport three patches

2013-06-06 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 8a2ac668d99f7d64c2acffc3a39cedb2d152be6e: lrzsz: check locale.h in configure (2013-06-04 15:53:45 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/trace-cmd

[OE-core] [PATCH 1/1] wpa-supplicant: Enable EXTRA_CFLAGS

2013-06-08 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Even if we define EXTRA_CFLAGS, but it never work, since the source codes donot refer it, and CFLAGS is given a fixed value. Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-2.0.inc |1 + 1

[OE-core] [PATCH 0/1] wpa-supplicant: Enable EXTRA_CFLAGS

2013-06-08 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 0810ea2a72bdea67a3d8002c4e12fb20f45cf1d5: base/useradd/sstate: Ensure do_package setscene has correct fakeroot dependencies (2013-06-07 17:51:13 +0100) are available in the git repository at:

[OE-core] [PATCH 1/1] latencytop: Deprecate tracing_enabled for tracing_on

2013-06-08 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com tracing_enabled should not be used, it is heavy weight and does not do much in helping lower the overhead. see commmit (Deprecate tracing_enabled for tracing_on 6752ab4a9c30d5411b2dfdb251a3f1cb18aae48) in kernel Signed-off-by: Roy.Li

[OE-core] [PATCH 0/1] latencytop: Deprecate tracing_enabled for tracing_on

2013-06-08 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 0810ea2a72bdea67a3d8002c4e12fb20f45cf1d5: base/useradd/sstate: Ensure do_package setscene has correct fakeroot dependencies (2013-06-07 17:51:13 +0100) are available in the git repository at:

[OE-core] [PATCH 0/1 v2] openssh: two fixes

2013-06-12 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 74158c2e99c6d8631800ae80025d1cc9f19336d2: tune-cortexa*.inc: fix tunings for cortex a5, a7, a8, a9, a15 machines. (2013-06-12 17:54:28 +0100) are available in the git repository at:

[OE-core] [PATCH 0/1] bind: backport six CVE patches

2013-06-12 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 74158c2e99c6d8631800ae80025d1cc9f19336d2: tune-cortexa*.inc: fix tunings for cortex a5, a7, a8, a9, a15 machines. (2013-06-12 17:54:28 +0100) are available in the git repository at:

[OE-core] [PATCH 0/2 v3] openssh: two fixes

2013-06-14 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 1aeecaeee9bb1eee779973fce7f15cc7fad269a0: classes/qmake_base: allow parallel make (2013-06-13 17:37:58 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/openssh-4

[OE-core] [PATCH 2/2] openssh: obey 'tcp-wrappers' PACKAGECONFIG

2013-06-14 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/recipes-connectivity/openssh/openssh_6.2p2.bb |3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-connectivity/openssh/openssh_6.2p2.bb

[OE-core] [PATCH 1/2] openssh: fix a unaligned memory access issue

2013-06-14 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Backport patch to fix segment fault due to unaligned memory access Signed-off-by: Roy.Li rongqing...@windriver.com --- .../openssh/openssh-6.2p2/mac.patch| 76 meta/recipes-connectivity/openssh/openssh_6.2p2.bb |1

[OE-core] [PATCH 0/1] directfb:filter out -fno-omit-frame-pointer option on x86 arch

2013-06-14 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 1aeecaeee9bb1eee779973fce7f15cc7fad269a0: classes/qmake_base: allow parallel make (2013-06-13 17:37:58 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/directfd

[OE-core] [PATCH 1/1] directfb:filter out -fno-omit-frame-pointer option on x86 arch

2013-06-14 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com directfb need -fomit-frame-pointer option of gcc to build some inline asm code about mmx. But once -fno-omit-frame-pointer was added into TARGET_CFLAGS. That will cause directfb build error on x86 arch. Signed-off-by: Roy.Li rongqing...@windriver.com ---

[OE-core] [PATCH 0/1] cogl: make cogl be able to build on ARM arch

2013-06-14 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 1aeecaeee9bb1eee779973fce7f15cc7fad269a0: classes/qmake_base: allow parallel make (2013-06-13 17:37:58 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/cogl

[OE-core] [PATCH 1/1] cogl: make cogl be able to build on ARM arch

2013-06-14 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com 1. Fix asm() register constraints in cogl when building for ARM. 2. Fix cogl to handle Thumb builds. Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/recipes-graphics/cogl/cogl-1.0.inc|4 +++ .../cogl/files/cogl-fixed-thumb.patch

[OE-core] [PATCH 0/1] cairo: fix build error

2013-06-18 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit cf59801be372bda962a94e6a406e97d20744ae45: licences: Add SGI license (2013-06-17 16:44:36 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/cairo

[OE-core] [PATCH 1/1] cairo: fix build error since toolchain has not get_feature command

2013-06-18 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Signed-off-by: Roy.Li rongqing...@windriver.com --- ...-check-stderr-when-test-compiling-in-conf.patch | 39 meta/recipes-graphics/cairo/cairo_1.12.14.bb |3 +- 2 files changed, 41 insertions(+), 1 deletion(-) create mode

[OE-core] [PATCH 1/1] base-files: create /usr/lib/locale dir

2013-06-18 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Lsbtest shows that /usr/lib/locale dir is lost, so create it Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/recipes-core/base-files/base-files_3.0.14.bb |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[OE-core] [PATCH 0/1] base-files: create /usr/lib/locale dir

2013-06-18 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit cf59801be372bda962a94e6a406e97d20744ae45: licences: Add SGI license (2013-06-17 16:44:36 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/base-files

[OE-core] [PATCH 1/2] image-live.bbclass: enable read-only-rootfs IMAGE_FEATURE

2013-06-19 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com enable read-only-rootfs to make /tmp be able to be written when using sysvinit Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/classes/image-live.bbclass |2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/classes/image-live.bbclass

[OE-core] [PATCH 2/2] base-files: create /usr/lib/locale dir

2013-06-19 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Lsbtest shows that /usr/lib/locale dir is lost, so create it Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/recipes-core/base-files/base-files_3.0.14.bb |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[OE-core] [PATCH 0/2] create /usr/lib/locale dir and enable read-only-rootfs for live image

2013-06-19 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit ea31d45def0e9fc4ed1c1ef92756d807ff59fe72: core-image-weston: add weston-examples to the image (2013-06-18 16:43:16 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib

[OE-core] [PATCH 0/1] fix qt-mobility-x11 build failure

2013-06-23 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit b2df9eef5a99e1d5a9dd262c1091b409a8c8174d: psplash: Bump PR to allow removal of PRINC from meta-yocto (2013-06-21 14:23:16 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib

[OE-core] [PATCH 1/1] qt-mobility: remove /usr/lib from ld rpath-link option

2013-06-23 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Remove /usr/lib from ld rpath-link option to fix the below build error: bitbake_build/tmp/sysroots/x86-kvm-guest/usr/lib/libpng16.so.16: undefined reference to `inflateReset2@ZLIB_1.2.3.4' since sysroot seems not work for rpath-link, and

[OE-core] [PATCH 0/1] autotools.bbclass: force copy Makefile.in.in to ${S}/po/

2013-06-25 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 8c35ba2d3048ce69f74f72cb2676e4bc162cfb63: populate_sdk_base, adt_installer: abort install if path contains spaces (2013-06-25 17:59:13 +0100) are available in the git repository at:

[OE-core] [PATCH 1/1] autotools.bbclass: force copy Makefile.in.in to ${S}/po/

2013-06-25 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com If a Makefile.in.in has existed under ${S}/po/ and is read-only, cp will fail. Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/classes/autotools.bbclass |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[OE-core] [PATCH 0/1] xf86-video-intel: backport a patch to fix a compile failure

2013-06-27 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 099063f353a7a18720c92d87400726a49eed432f: sanity.bbclass: Fix COREBASE sanity tests (2013-06-27 12:48:52 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/xf86-video-intel

[OE-core] [PATCH 1/1] xf86-video-intel: backport a patch to fix a compile failure

2013-06-27 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com backport a patch to fix a compile failure when xorg-xserver's version is less than 1.10 Signed-off-by: Roy.Li rongqing...@windriver.com --- ...-compilation-error-with-xorg-xserver-1.10.patch | 31

[OE-core] [PATCH 1/1] sysstat: backport a patch to fix a parallel building error

2013-06-30 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Signed-off-by: Roy.Li rongqing...@windriver.com --- ...-Makefile-to-allow-for-parallel-execution.patch | 33 meta/recipes-extended/sysstat/sysstat.inc |3 +- 2 files changed, 35 insertions(+), 1 deletion(-) create mode

[OE-core] [PATCH 0/1] sysstat: backport a patch to fix a parallel building error

2013-06-30 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit ff65497cd9a96d5ab49b16ba1f7e30a216ff4a42: classes/insane: remove la2 check which no longer exists from ERROR_QA (2013-06-28 16:33:05 +0100) are available in the git repository at:

[OE-core] [PATCH 0/1 v2] sysstat: backport a patch to fix a parallel building error

2013-07-01 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit ff65497cd9a96d5ab49b16ba1f7e30a216ff4a42: classes/insane: remove la2 check which no longer exists from ERROR_QA (2013-06-28 16:33:05 +0100) are available in the git repository at:

[OE-core] [PATCH 1/1] sysstat: backport a patch to fix a parallel building error

2013-07-01 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Signed-off-by: Roy.Li rongqing...@windriver.com --- ...-Makefile-to-allow-for-parallel-execution.patch | 34 meta/recipes-extended/sysstat/sysstat.inc |3 +- 2 files changed, 36 insertions(+), 1 deletion(-) create mode

[OE-core] [PATCH 0/1] pango: remove pango-module-basic-x RRECOMMENDS

2013-07-08 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit b97570c66737a6c404b49459cd95184abb855399: qt4: Take PV increase opportunity to drop PR (2013-07-05 15:49:51 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/pango

[OE-core] [PATCH 1/1] pango: remove pango-module-basic-x RRECOMMENDS

2013-07-08 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com pango-module-basic-x has been removed from pango-1.31.0 and we're using pango-1.32.5, so we should not refer pango-module-basic-x. Commit 194b6ee552318ec6c494f34ed9f0979d0460fe4f Author: Behdad Esfahbod beh...@behdad.org Date: Thu Aug 16

[OE-core] [PATCH 1/1] dpkg: backport a patch to support mipsn32el and mips64el

2013-07-15 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Signed-off-by: Roy.Li rongqing...@windriver.com --- ...-for-mipsn32-el-and-mips64-el-to-arch-tab.patch | 78 meta/recipes-devtools/dpkg/dpkg_1.16.10.bb |3 +- 2 files changed, 80 insertions(+), 1 deletion(-) create mode

[OE-core] [PATCH 0/1] dpkg: backport a patch to support mipsn32el and mips64el

2013-07-15 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit e683f1ce730dcdbf0acb280ebe53673c415e1454: pango: remove pango-module-basic-x RRECOMMENDS (2013-07-09 10:25:54 +0800) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/dpkg

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

2013-07-23 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com qemu prints errors sometime, but it works well, the error information can be captured by rpm, and lead to rpm failure. like: $export D=/tmp/rootfs;.../usr/bin/qemu-i386 -L $D \ -E LD_LIBRARY_PATH=$D/usr/lib:$D/lib $D/bin/udevadm hwdb

[OE-core] [PATCH 0/1] qemu: block to build it on mips64 arch

2013-07-24 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 947336a1ef2b936328ba6fcf519d55a4eda7085d: systemd: ignore qemu output, and check its return code (2013-07-24 13:09:10 +0800) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/qemu

[OE-core] [PATCH 1/1] qemu: block to build it on mips64 arch

2013-07-24 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com qemu packages can NOT be built for mips64, Set COMPATIBLE_HOST to null to block build them for such platform. Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/recipes-devtools/qemu/qemu_1.5.0.bb |2 ++ meta/recipes-devtools/qemu/qemu_git.bb |

[OE-core] [PATCH 0/1] sstate.bbclass: fix parallel building issue

2013-08-13 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 8dbb6fdca32785d91d6380e3722720714f8140e8: man-pages: upgrade to 3.53 (2013-08-05 23:59:59 -0700) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/sstat

[OE-core] [PATCH 1/1] sstate.bbclass: fix parallel building issue

2013-08-13 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com sstate_package creates hardlink from sysroot to SSTATE_BUILDDIR, then sstate_create_package will store SSTATE_BUILDDIR into a archive file by tar, but once other packages install the same file into sysroot, the creating the archive file will fail with below

[OE-core] [PATCH 0/1] shadown: backport a patch to make newgrp work

2013-08-19 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 02e6f25c210b0628dc4ee4482474b0e6ce5606e4: sstate.bbclass: fix parallel building issue (2013-08-13 15:16:29 +0800) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/mewgrp

[OE-core] [PATCH 1/1] shadown: backport a patch to make newgrp work

2013-08-19 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Signed-off-by: Roy.Li rongqing...@windriver.com --- .../shadow/files/fix-etc-gshadow-reading.patch | 36 meta/recipes-extended/shadow/shadow_4.1.4.3.bb |1 + 2 files changed, 37 insertions(+) create mode 100644

[OE-core] [PATCH 0/1 v2] shadow: backport a patch to make newgrp work

2013-08-20 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Diff with v1: fix a typOS The following changes since commit fd9e591f266e1a6c183e77f24e50d31e0d52bdd5: cronie: fix out of tree build (2013-08-19 11:24:51 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/mewgrp1

[OE-core] [PATCH 1/1] shadow: backport a patch to make newgrp work

2013-08-20 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Signed-off-by: Roy.Li rongqing...@windriver.com --- .../shadow/files/fix-etc-gshadow-reading.patch | 36 meta/recipes-extended/shadow/shadow_4.1.4.3.bb |1 + 2 files changed, 37 insertions(+) create mode 100644

[OE-core] [PATCH 0/1] btrfs-tools: Add dependency on lzo acl e2fsprog

2013-08-26 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 9b05c65450526522d7358d0c0901b594de546748: sstate: Fix the relative symlink replacement code (2013-08-23 16:59:04 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/btrfs

[OE-core] [PATCH 1/1] btrfs-tools: Add dependency on lzo acl e2fsprog

2013-08-26 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb

[OE-core] [PATCH 1/1] libnfsidmap: Add and modify idmapd.conf

2013-08-26 Thread rongqing.li
From: Zhang Xiao xiao.zh...@windriver.com add configuration file to make rpc.idmapd to not report below error: rpc.idmapd: Skipping configuration file /etc/idmapd.conf: No such file or directory rpc.idmapd: Could not find group nobody Signed-off-by: Zhang Xiao

[OE-core] [PATCH 0/1]libnfsidmap: Add and modify idmapd.conf

2013-08-26 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 58d05c817cf3be071c66c7e4dbbb9942fd7a0752: xdg-utils: add runtime dependency on xprop (2013-08-23 16:08:30 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/libnfsidmap

[OE-core] [PATCH] libsamplerate0: add PACKAGECONFIG for fftw

2013-08-27 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com fftw is autodetected from sysroot, add PACKAGECONFIG to make it deterministic Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/recipes-multimedia/libsamplerate/libsamplerate0_0.1.8.bb |2 ++ 1 file changed, 2 insertions(+) diff --git

[OE-core] [PATCH] systemd: add ptest

2013-08-28 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/recipes-core/systemd/systemd/run-ptest |2 ++ meta/recipes-core/systemd/systemd_204.bb| 18 +- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644

[OE-core] [PATCH v2] systemd: add ptest

2013-08-28 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/recipes-core/systemd/systemd/run-ptest |2 ++ meta/recipes-core/systemd/systemd_204.bb| 16 +++- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644

[OE-core] [PATCH] systemd: add ptest

2013-09-02 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/recipes-core/systemd/systemd/run-ptest |2 ++ meta/recipes-core/systemd/systemd_206.bb| 16 +++- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644

[OE-core] [PATCH 0/2] Add status command for LSB compliance for some packages

2013-09-02 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 619e63946fef32995363981aab288fc669e8ac04: pulseaudio: disable GTK+ by default (2013-09-02 18:04:56 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/status

[OE-core] [PATCH 2/2] irda-utils: add init.d/irattach status command for LSB compliance

2013-09-02 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/recipes-connectivity/irda-utils/irda-utils-0.9.18/init |9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/meta/recipes-connectivity/irda-utils/irda-utils-0.9.18/init

[OE-core] [PATCH 1/2] distcc: add init.d/distcc status command for LSB compliance

2013-09-02 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/recipes-devtools/distcc/files/distcc | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/meta/recipes-devtools/distcc/files/distcc

[OE-core] [PATCH 0/2] make runlevel to return correct value

2013-09-04 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com The following changes since commit 8c272641ef3e8410f331ca4133d28dea8f36e4f4: lib/oeqa/runtime: smart: serve repo on host ip only and increase timeout (2013-09-03 19:57:31 +0100) are available in the git repository at:

[OE-core] [PATCH 1/2] systemd-compat-units: do not create runlevel command

2013-09-04 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com It seems strange that runlevel always returns 1, we should create a runlevel link to systemctl if systemd is installed. Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/recipes-core/systemd/systemd-compat-units.bb |5 - 1 file changed, 5

[OE-core] [PATCH 2/2] systemd: link runlevel from systemctl

2013-09-04 Thread rongqing.li
From: Roy.Li rongqing...@windriver.com using update-alternatives to link runlevel from systemctl, as on Fedora 18 Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/recipes-core/systemd/systemd_206.bb |6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git

[OE-core] [PATCH 0/1] gcc: make compiler to search build directory before standard system

2013-02-19 Thread rongqing.li
The following changes since commit a5362de60c0051f16b88a40bd9cb41915bee0b0f: rootfs_ipkg: fix BAD_RECOMMENDATIONS handling (2013-02-19 14:37:44 -0800) are available in the git repository at: git://git.pokylinux.org/poky-contrib gcc_search_build_dir_firstly

[OE-core] [PATCH 1/1] gcc: make compiler to search build directory before standard system include directories

2013-02-19 Thread rongqing.li
If libunwind is compiled firstly, unwind.h from libunwind is installed into sysroot, compiling gcc will fail since it use wrong unwind.h, it should always use unwind.h under build directory. Signed-off-by: Roy.Li rongqing...@windriver.com --- meta/recipes-devtools/gcc/gcc-4.7.inc |2 +-

[OE-core] [PATCH] btrfs-tools: fix a parallel build issue

2013-09-10 Thread rongqing.li
From: Roy Li rongqing...@windriver.com Signed-off-by: Roy Li rongqing...@windriver.com --- .../btrfs-progs-fix-parallel-build.patch | 30 .../btrfs-tools/btrfs-tools_git.bb |1 + 2 files changed, 31 insertions(+) create mode 100644

[OE-core] [PATCH 1/1] ptest-runner: trivial fixes and refine

2013-09-11 Thread rongqing.li
From: Roy Li rongqing...@windriver.com 1. ptest files may be installed under /usr/lib64/ for 64bit filesystem or under /usr/lib/ for 64bit multilib filesystem, so we should check both directories 2. If a soft link is linking to a directory under the same directory, we only run once. [YOCTO

[OE-core] [PATCH 0/1] ptest-runner: trivial fixes and refine

2013-09-11 Thread rongqing.li
From: Roy Li rongqing...@windriver.com The following changes since commit 5b451a46550ba62e2fbfe5dbe50723b34a4fd527: systemd.bbclass: get the correct /lib directory (2013-09-10 23:15:09 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/ptest

[OE-core] [PATCH 0/1 v2] ptest-runner: trivial fixes and refine

2013-09-11 Thread rongqing.li
From: Roy Li rongqing...@windriver.com The following changes since commit 5b451a46550ba62e2fbfe5dbe50723b34a4fd527: systemd.bbclass: get the correct /lib directory (2013-09-10 23:15:09 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/ptest-1

[OE-core] [PATCH 1/1] ptest-runner: trivial fixes and refine

2013-09-11 Thread rongqing.li
From: Roy Li rongqing...@windriver.com 1. ptest files may be installed under /usr/lib64/ for 64bit filesystem or under /usr/lib/ for 64bit multilib filesystem, so we should check both directories 2. If a soft link is linking to a directory under the same directory, we only run once. [YOCTO

[OE-core] [PATCH 1/1] pciutils: remove pcimodules

2013-09-17 Thread rongqing.li
From: Roy Li rongqing...@windriver.com pcimodules can not work due to no modules.pcimap file, and has been replaced by lspci -k, so we can remove it. Update lib-build-fix.patch since remove pcimodules-pciutils.diff. [YOCTO# 5210] Signed-off-by: Roy Li rongqing...@windriver.com ---

[OE-core] [PATCH 0/1] pciutils: remove pcimodules

2013-09-17 Thread rongqing.li
From: Roy Li rongqing...@windriver.com The following changes since commit 1ab0813c819d3b785178faa458486efa6992c636: linux-yocto/3.10: genericx86 meta data factoring (2013-09-14 08:36:23 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib roy/pciutils-1

[OE-core] [PATCH] sstate.bbclass: ignore the tar failure.

2013-09-22 Thread rongqing.li
From: Roy Li rongqing...@windriver.com sstate_package creates hardlink from sysroot to SSTATE_BUILDDIR, and sstate_create_package stores SSTATE_BUILDDIR into a archive file by tar, these two task can be run simultaneously for different packages, and make a hardlink for a file will lead to the

[OE-core] [PATCH] ptest-runner: compatibile with busybox

2013-09-22 Thread rongqing.li
From: Roy Li rongqing...@windriver.com Do not use pushd, busybox does not support it if system only has busybox; run-ptests are always installed under ${libdir}, not linked into ${libdir}, so do not need to find run-ptest under a link, that avoid to use -L option when use find command

[OE-core] [PATCH v2] ptest-runner: compatibile with busybox

2013-09-23 Thread rongqing.li
From: Roy Li rongqing...@windriver.com Do not use pushd, busybox does not support it if system only has busybox; Replace find command with ls to avoid some busybox's find unsupported options; Signed-off-by: Roy Li rongqing...@windriver.com --- .../recipes-support/ptest-runner/files/ptest-runner

[OE-core] [PATCH] perl: do not use pushd

2013-09-24 Thread rongqing.li
From: Roy Li rongqing...@windriver.com pushd is not available when system is using dash as default shell Signed-off-by: Roy Li rongqing...@windriver.com --- meta/recipes-devtools/perl/perl-ptest.inc |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[OE-core] [PATCH] bind: port a patch to fix a build failure

2013-09-24 Thread rongqing.li
From: Roy Li rongqing...@windriver.com Signed-off-by: Roy Li rongqing...@windriver.com --- .../bind/bind-9.8.1/mips1-not-support-opcode.diff | 104 meta/recipes-connectivity/bind/bind_9.8.1.bb |1 + 2 files changed, 105 insertions(+) create mode 100644

[OE-core] [PATCH] makedevs: rectify the exit codes and handle the invalid parameter

2013-09-24 Thread rongqing.li
From: Roy Li rongqing...@windriver.com It is correct behaviours to output help and version information, and should return 0; When input parameter is invalid, print help information and exit. Signed-off-by: Roy Li rongqing...@windriver.com ---

  1   2   3   4   5   >