[OE-core] [PATCH] kernel-fitimage: add support for ext2.gz initramfs files

2018-07-03 Thread chunrong . guo
From: Chunrong Guo Signed-off-by: Chunrong Guo --- meta/classes/kernel-fitimage.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass index f84be44..8698022 100644 --- a/meta/classes/kernel

[OE-core] [PATCH] tune-ppce500v1: Add a tune file for PowerPC e500v1 cores

2018-06-14 Thread chunrong . guo
From: Chunrong Guo Signed-off-by: Chunrong Guo --- meta/conf/machine/include/tune-ppce500v1.inc | 20 1 file changed, 20 insertions(+) create mode 100644 meta/conf/machine/include/tune-ppce500v1.inc diff --git a/meta/conf/machine/include/tune-ppce500v1.inc b/meta/conf

[OE-core] [PATCH] tcf-agent: update machine setting for aarch64 bigendian build

2018-01-24 Thread Chunrong Guo
From: Chunrong Guo Signed-off-by: Chunrong Guo --- meta/recipes-devtools/tcf-agent/tcf-agent_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb b/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb index 6d6ba76..ba14c42

[OE-core] [PATCH] coreutils: fix u-a for link

2018-01-08 Thread Chunrong Guo
From: Chunrong Guo * busybox installs link to base_bindir not bindir /bin/link -> busybox * so u-a for coreutils fails: update-alternatives: Error: cannot register alternative link to /usr/bin/link since it is already registered to /bin/link Signed-off-by: Chunrong Guo --- meta/reci

[OE-core] [PATCH] kernel-fitimage: add DTB_LOAD to set dtb address

2017-10-25 Thread Chunrong Guo
From: Chunrong Guo kernel-fitimage for arm64 and arm need dynamically sets dtb address, thus we need a flexible way to load dtb address value. Signed-off-by: Chunrong Guo --- meta/classes/kernel-fitimage.bbclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/classes/kernel

[OE-core] [PATCH] kernel-fitimage: support ARM64 On arm64, the kernel image target is Image

2017-10-18 Thread Chunrong Guo
From: Chunrong Guo Signed-off-by: Chunrong Guo --- meta/classes/kernel-fitimage.bbclass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass index 179185b..53d9f4a 100644 --- a/meta/classes/kernel-fitimage.bbclass

[OE-core] [PATCH] glibc: do the multilib_header magic also for bits/pthreadtypes-arch.h

2017-09-06 Thread Chunrong Guo
From: Chunrong Guo Otherwise it will cause conflicts in mutlilib setting, as it varies from one machine to another. Signed-off-by: Chunrong Guo --- meta/recipes-core/glibc/glibc-package.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/glibc/glibc

[OE-core] [PATCH] glibc: Drop obsoleted bits/pthreadtypes-arch.h from multilibbing

2017-09-05 Thread Chunrong Guo
From: Chunrong Guo Signed-off-by: Chunrong Guo --- meta/recipes-core/glibc/glibc-package.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/glibc/glibc-package.inc b/meta/recipes-core/glibc/glibc-package.inc index a291148..df3db2c 100644 --- a/meta

[OE-core] [PATCH v3 3/3] kernel-fitimage: fix KERNEL_DEVICETREE includes subdirectory issue

2017-06-19 Thread Chunrong Guo
* For example: KERNEL_DEVICETREE ?= "freescale/fsl-ls1046a-rdb.dtb" ${DTB}= "freescale/fsl-ls1046a-rdb.dtb" but only fsl-ls1046a-rdb.dtb should be used in fit-image.its Signed-off-by: Chunrong Guo --- meta/classes/kernel-fitimage.bbclass | 1

[OE-core] [PATCH v3 2/3] kernel-fitimage: set replacementtype to vmlinux

2017-06-19 Thread Chunrong Guo
Signed-off-by: Chunrong Guo --- meta/classes/kernel-fitimage.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass index f40fbf3..9fa836f 100644 --- a/meta/classes/kernel-fitimage.bbclass +++ b

[OE-core] [PATCH v3 1/3] kernel-fitimage: Support ext2.gz filesystems

2017-06-19 Thread Chunrong Guo
Signed-off-by: Chunrong Guo --- meta/classes/kernel-fitimage.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass index 2630b47..f40fbf3 100644 --- a/meta/classes/kernel-fitimage.bbclass +++ b

[OE-core] [PATCH V2 2/3] kernel-fitimage: set replacementtype to vmlinux

2017-05-30 Thread Chunrong Guo
From: Chunrong Guo Signed-off-by: Chunrong Guo --- meta/classes/kernel-fitimage.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass index f40fbf3..9fa836f 100644 --- a/meta/classes/kernel

[OE-core] [PATCH V2 3/3] kernel-fitimage: fix KERNEL_DEVICETREE includes subdirectory issue

2017-05-30 Thread Chunrong Guo
From: Chunrong Guo * For example: KERNEL_DEVICETREE ?= "freescale/fsl-ls1046a-rdb.dtb" ${DTB}= "freescale/fsl-ls1046a-rdb.dtb" but only fsl-ls1046a-rdb.dtb should be used in fit-image.its Signed-off-by: Chunrong Guo --- meta/classes/kernel-

[OE-core] [PATCH V2 1/3] kernel-fitimage: Support ext2.gz filesystems

2017-05-30 Thread Chunrong Guo
From: Chunrong Guo Signed-off-by: Chunrong Guo --- meta/classes/kernel-fitimage.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass index 2630b47..f40fbf3 100644 --- a/meta/classes/kernel

[OE-core] [[PATCH v2 1/3] kernel-fitimage: Support ext2.gz filesystems

2017-05-16 Thread Chunrong Guo
From: Chunrong Guo Signed-off-by: Chunrong Guo --- meta/classes/kernel-fitimage.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass index 2630b47..f40fbf3 100644 --- a/meta/classes/kernel

[OE-core] [[PATCH v2 3/3] kernel-fitimage: fix KERNEL_DEVICETREE includes subdirectory issue

2017-05-16 Thread Chunrong Guo
From: Chunrong Guo * For example: KERNEL_DEVICETREE ?= "freescale/fsl-ls1046a-rdb.dtb" ${DTB}= "freescale/fsl-ls1046a-rdb.dtb" but only fsl-ls1046a-rdb.dtb should be used in fit-image.its Signed-off-by: Chunrong Guo --- meta/classes/kernel-fitimage.b

[OE-core] [[PATCH v2 2/3] kernel-fitimage: set replacementtype to vmlinux

2017-05-16 Thread Chunrong Guo
From: Chunrong Guo Signed-off-by: Chunrong Guo --- meta/classes/kernel-fitimage.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass index f40fbf3..9fa836f 100644 --- a/meta/classes/kernel

[OE-core] [PATCH 2/3] kernel-fitimage: set replacementtype to vmlinux

2017-05-10 Thread Chunrong Guo
From: Chunrong Guo Signed-off-by: Chunrong Guo --- meta/classes/kernel-fitimage.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass index f40fbf3..9fa836f 100644 --- a/meta/classes/kernel

[OE-core] [PATCH 1/3] kernel-fitimage: Support ext2.gz filesystems

2017-05-10 Thread Chunrong Guo
From: Chunrong Guo Signed-off-by: Chunrong Guo --- meta/classes/kernel-fitimage.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass index 2630b47..f40fbf3 100644 --- a/meta/classes/kernel

[OE-core] [PATCH 3/3] kernel-fitimage: fix KERNEL_DEVICETREE includes subdirectory issue

2017-05-10 Thread Chunrong Guo
From: Chunrong Guo * For example: KERNEL_DEVICETREE ?= "freescale/fsl-ls1046a-rdb.dtb" ${DTB}= "freescale/fsl-ls1046a-rdb.dtb" but only fsl-ls1046a-rdb.dtb should be used in fit-image.its Signed-off-by: Chunrong Guo --- meta/classes/kernel-

[OE-core] [[PATCH v2] kernel-fitimage: fix ${KERNEL_DEVICETREE} includes subdirectory issue.

2017-05-09 Thread Chunrong Guo
From: Chunrong Guo * For example: KERNEL_DEVICETREE ?= "freescale/fsl-ls1046a-rdb.dtb" ${DTB}= "freescale/fsl-ls1046a-rdb.dtb" but only the dtb name should be used. * Support "ext2.gz " filesystems * Support mutiple KERN

[OE-core] [[PATCH v2] kernel-fitimage: fix ${KERNEL_DEVICETREE} includes subdirectory issue.

2017-05-08 Thread Chunrong Guo
From: Chunrong Guo * For example: KERNEL_DEVICETREE ?= "freescale/fsl-ls1046a-rdb.dtb" ${DTB}= "freescale/fsl-ls1046a-rdb.dtb" but only the dtb name should be used. * Support "ext2.gz " filesystems * Support mutiple KERN

[OE-core] [[PATCH v2] kernel-fitimage: fix ${KERNEL_DEVICETREE} includes subdirectory issue.

2017-05-04 Thread Chunrong Guo
From: Chunrong Guo * For example: KERNEL_DEVICETREE ?= "freescale/fsl-ls1046a-rdb.dtb" ${DTB}= "freescale/fsl-ls1046a-rdb.dtb" but only the dtb name should be used. * Support "ext2.gz " filesystems * Support mutiple KERN

[OE-core] [PATCH] kernel-fitimage: fix ${KERNEL_DEVICETREE} includes subdirectory issue.

2017-05-04 Thread Chunrong Guo
From: Chunrong Guo * For example: KERNEL_DEVICETREE ?= "freescale/fsl-ls1046a-rdb.dtb" ${DTB}= "freescale/fsl-ls1046a-rdb.dtb" but only the dtb name should be used. * Support "ext2.gz " filesystems * Support mutiple KERN

[OE-core] [fido][PATCH] groff: add runtime dependency on sed

2015-04-28 Thread Chunrong Guo
This is to suppress the following QA warning: groff-1.22.2: groff requires /bin/sed, but no providers in its RDEPENDS [file-rdeps] Signed-off-by: Chunrong Guo --- meta/recipes-extended/groff/groff_1.22.2.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-extended/groff

[OE-core] [PATCH v5] u-boot.inc: fix rename image error

2015-03-25 Thread Chunrong Guo
Resolve mismatch between U-Boot configs and uboot image name. The ${S}/${config}/u-boot-${type}.${UBOOT_SUFFIX} may alway be false and repeat compile or install so we need to check if ${type} match ${config} Signed-off-by: Chunrong Guo --- meta/recipes-bsp/u-boot/u-boot.inc | 101

[OE-core] [PATCH v4] u-boot.inc: fix rename image error

2015-03-11 Thread Chunrong Guo
Resolve mismatch between U-Boot configs and uboot image name. The ${S}/${config}/u-boot-${type}.${UBOOT_SUFFIX} may alway be false and repeat compile or install so we need to check if ${type} match ${config} . Signed-off-by: Chunrong Guo --- meta/recipes-bsp/u-boot/u-boot.inc | 85

[OE-core] [PATCH v3] u-boot.inc: fix rename image error

2015-03-09 Thread Chunrong Guo
Resolve mismatch between U-Boot configs and uboot image name. The ${S}/${config}/u-boot-${type}.${UBOOT_SUFFIX} may alway be false and repeat compile or install so we need to check if ${type} match ${config} . Signed-off-by: Chunrong Guo --- meta/recipes-bsp/u-boot/u-boot.inc | 52

[OE-core] [PATCH v2] u-boot.inc: fix rename image error

2015-03-05 Thread Chunrong Guo
Resolve mismatch between U-Boot configs and uboot image name. The ${S}/${config}/u-boot-${type}.${UBOOT_SUFFIX} may alway be false and repeat compile or install so we need to check if ${type} match ${config} . Signed-off-by: Chunrong Guo --- meta/recipes-bsp/u-boot/u-boot.inc | 51

[OE-core] [PATCH] u-boot.inc: fix rename image error

2015-03-05 Thread Chunrong Guo
Resolve mismatch between U-Boot configs and uboot image name. The ${S}/${config}/u-boot-${type}.${UBOOT_SUFFIX} may alway be false and repeat compile or install so we need to check if ${type} match ${config} . Signed-off-by: Chunrong Guo --- meta/recipes-bsp/u-boot/u-boot.inc | 32

[OE-core] [PATCH v5 2/2] u-boot.inc : add compile multiple u-boot feature

2015-01-21 Thread Chunrong Guo
Signed-off-by: Chunrong Guo --- meta/recipes-bsp/u-boot/u-boot.inc | 150 +++-- 1 file changed, 129 insertions(+), 21 deletions(-) diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc index c695b73..58725fa 100644 --- a/meta

[OE-core] [PATCH v5 1/2] uboot-config.bbclass: Allow multiple U-Boot config for machine

2015-01-21 Thread Chunrong Guo
ONFIG ??= "sd eimnor nand spinor" | UBOOT_CONFIG[sd] = "mx6qsabreauto_config,sdcard" | UBOOT_CONFIG[eimnor] = "mx6qsabreauto_eimnor_config" | UBOOT_CONFIG[nand] = "mx6qsabreauto_nand_config,ubifs" | UBOOT_CONFIG[spinor] = "mx6qsabreauto_spinor_confi

[OE-core] [PATCH v4 1/2] uboot-config.bbclass: Allow multiple U-Boot config for machine

2014-12-10 Thread Chunrong Guo
This adds support to build multiple U-Boot configs for a machine; this is useful when we have support for different media boots which require different U-Boot configuration (e.g: eMMC and NAND). Signed-off-by: Chunrong Guo --- meta/classes/uboot-config.bbclass | 37

[OE-core] [PATCH v4 2/2] u-boot.inc : add compile multiple u-boot feature

2014-12-10 Thread Chunrong Guo
Signed-off-by: Chunrong Guo --- meta/recipes-bsp/u-boot/u-boot.inc | 150 +++-- 1 file changed, 129 insertions(+), 21 deletions(-) diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc index c695b73..58725fa 100644 --- a/meta

[OE-core] [PATCH v3 1/2] uboot-config.bbclass: Allow multiple U-Boot config for machine

2014-12-03 Thread Chunrong Guo
This adds support to build multiple U-Boot configs for a machine; this is useful when we have support for different media boots which require different U-Boot configuration (e.g: eMMC and NAND). Signed-off-by: Chunrong Guo --- meta/classes/uboot-config.bbclass | 37

[OE-core] [PATCH v3 2/2] u-boot.inc : add compile multiple u-boot feature

2014-12-03 Thread Chunrong Guo
Signed-off-by: Chunrong Guo --- meta/recipes-bsp/u-boot/u-boot.inc | 72 +- 1 file changed, 47 insertions(+), 25 deletions(-) diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc index c695b73..9b93946 100644 --- a/meta

[OE-core] [PATCH v2 1/2] uboot-config.bbclass: Allow multiple U-Boot config for machine

2014-11-23 Thread Chunrong Guo
This adds support to build multiple U-Boot configs for a machine; this is useful when we have support for different media boots which require different U-Boot configuration (e.g: eMMC and NAND). Signed-off-by: Chunrong Guo --- meta/classes/uboot-config.bbclass | 42

[OE-core] [PATCH v2 2/2] u-boot.inc : add compile multiple u-boot feature

2014-11-23 Thread Chunrong Guo
Signed-off-by: Chunrong Guo --- meta/recipes-bsp/u-boot/u-boot.inc | 56 +- 1 file changed, 31 insertions(+), 25 deletions(-) diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc index c695b73..bd76241 100644 --- a/meta

[OE-core] [PATCH v1 2/2] u-boot.inc : add compile multiple u-boot feature

2014-11-20 Thread Chunrong Guo
Signed-off-by: Chunrong Guo --- meta/recipes-bsp/u-boot/u-boot.inc | 42 ++ 1 file changed, 15 insertions(+), 27 deletions(-) diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc index c695b73..d107a10 100644 --- a/meta

[OE-core] [PATCH v1 1/2] uboot-config.bbclass: Allow multiple U-Boot config for machine

2014-11-20 Thread Chunrong Guo
This adds support to build multiple U-Boot configs for a machine; this is useful when we have support for different media boots which require different U-Boot configuration (e.g: eMMC and NAND). Signed-off-by: Chunrong Guo --- meta/classes/uboot-config.bbclass | 42

[OE-core] [PATCH 1/2] uboot-config.bbclass: Allow multiple U-Boot config for machine

2014-11-20 Thread Chunrong Guo
t; | UBOOT_CONFIG[sd] = "mx6qsabreauto_config,sdcard" | UBOOT_CONFIG[eimnor] = "mx6qsabreauto_eimnor_config" | UBOOT_CONFIG[nand] = "mx6qsabreauto_nand_config,ubifs" | UBOOT_CONFIG[spinor] = "mx6qsabreauto_spinor_config" Signed-

[OE-core] [PATCH 2/2] u-boot.inc : add compile multiple u-boot feature

2014-11-20 Thread Chunrong Guo
Signed-off-by: Chunrong Guo --- meta/recipes-bsp/u-boot/u-boot.inc | 42 ++ 1 file changed, 15 insertions(+), 27 deletions(-) diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc index c695b73..f420061 100644 --- a/meta

[OE-core] [PATCH] bumps to remove PRINC use in meta-fsl-ppc

2014-04-24 Thread Chunrong Guo
Signed-off-by: Chunrong Guo --- meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb| 2 +- meta/recipes-core/udev/udev-extraconf_1.0.bb | 2 +- meta/recipes-core/udev/udev_182.bb| 2 +- meta/recipes-extended/procps/procps_3.2.8.bb

[OE-core] [PATCH] lttng-modules: update to 2.4.1 version

2014-04-13 Thread Chunrong Guo
*This updates lttng-modules for 2.4.1 and it also fixes the build with 3.13 Linux kernel. Signed-off-by: Chunrong Guo --- .../lttng/lttng-modules/bio-bvec-iter.patch| 156 - meta/recipes-kernel/lttng/lttng-modules_2.4.0.bb | 38 - meta/recipes-kernel

[OE-core] [PATCH] eglibc: __slow_ieee754_sqrt{, f} functions for ppc e6500-32b

2014-04-08 Thread Chunrong Guo
*fix the following error: |/sysdeps/powerpc/powerpc32/e6500/fpu/e_sqrt.c:138:1: | error: redefinition of '__ieee754_sqrt' | __ieee754_sqrt (double x) Signed-off-by: Chunrong Guo --- .../ppce6500-32b_slow_ieee754_sqrt.patch | 47 ++ meta/re

[OE-core] [PATCH v2] coreutils: fix search paths for libstdbuf.so

2014-03-28 Thread Chunrong Guo
*fix the following error: |stdbuf: failed to find 'libstdbuf.so' *PKGLIBEXECDIR is the search paths for libstdbuf.so |PKGLIBEXECDIR='$(pkglibexecdir)' |pkglibexecdir='${libexecdir}/${PACKAGE}' Signed-off-by: Chunrong Guo --

[OE-core] [PATCH] coreutils: fix search paths for libstdbuf.so

2014-03-25 Thread Chunrong Guo
*fix the following error: |stdbuf: failed to find 'libstdbuf.so' *PKGLIBEXECDIR is the search paths for libstdbuf.so |PKGLIBEXECDIR='$(pkglibexecdir)' |pkglibexecdir='${libexecdir}/${PACKAGE}' Signed-off-by: Chunrong Guo --

[OE-core] [PATCH] lttng-modules: build as 64-bit kernel module on e6500

2013-12-12 Thread Chunrong Guo
s/mod/empty.c:1:0: error: -mcmodel not supported in this configuration | make[2]: *** [scripts/mod/empty.o] Error 1 | make[1]: *** [scripts/mod] Error 2 | make: *** [scripts] Error 2 Signed-off-by: Chunrong Guo --- meta/recipes-kernel/lttng/lttng-modules_2.3.3.bb | 12 ++

[OE-core] [PATCH] mdadm: flag __SANE_USERSPACE_TYPES__ to include int-ll64.h for powerpc64

2013-11-11 Thread Chunrong Guo
rgument of type 'long long unsigned int', |but argument 5 has type '__u64' [-Werror=format=] |dprintf("BVD %u has %08x at %llu\n", 0, Signed-off-by: Chunrong Guo --- meta/recipes-extended/mdadm/mdadm_3.3.bb |5 + 1 files changed, 5 insertions(

[OE-core] [PATCH] perf : fix perf of cross-compile for PowerPC 64bit targets

2013-09-26 Thread Chunrong Guo
[-Werror=format=] | attr->type, attr->config, fd); Signed-off-by: Chunrong Guo --- meta/recipes-kernel/perf/perf.bb |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/meta/recipes-kernel/perf/perf.bb b/meta/recipes-kernel/perf/perf.bb index 269069f..fa6b8b9 10064

[OE-core] [PATCH] gcc-4.8: fix ICE of cross-compile for PowerPC e500v2 targets

2013-08-28 Thread Chunrong Guo
: segmentation fault Signed-off-by: Chunrong Guo --- meta/recipes-devtools/gcc/gcc-4.8.inc |1 + .../0045-gcc-4.8-PR57717-PowerPC-E500v2.patch | 21 2 files changed, 22 insertions(+), 0 deletions(-) create mode 100644 meta/recipes-devtools/gcc/gcc-4.8/0045-gcc

[OE-core] [PATCH v2] genext2fs: fix memory corruption on powerpc

2013-08-15 Thread Chunrong Guo
* fix memory corruption errors on powerpc64 e.g. |$ genext2fs -b 3 -d . -i 8192 /tmp/tstrootfs | Segmentation fault Signed-off-by: Chunrong Guo --- .../fix-memory-corruption-on-powerpc.patch | 76 meta/recipes-devtools/genext2fs

[OE-core] [PATCH] genext2fs: fix memory corruption on powerpc

2013-08-14 Thread Chunrong Guo
* fix memory corruption errors on powerpc64 e.g. |$ genext2fs -b 3 -d . -i 8192 /tmp/tstrootfs | Segmentation fault Signed-off-by: Chunrong Guo --- .../fix-memory-corruption-on-powerpc.patch | 76 meta/recipes-devtools/genext2fs

[OE-core] [PATCH] base-files: remove symbolic link from /etc/mtab to /proc/mounts

2013-07-31 Thread Chunrong Guo
*If /etc/mtab is a symlink to /proc/self/mounts, mounting fails because addmntent returns an error. As a consequence, the Private directory is unusable because /proc/self/mounts is read-only feature. Signed-off-by: Chunrong Guo --- meta/recipes-core/base-files/base

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

2013-07-11 Thread Chunrong Guo
ollow |/pseudo_db.ccollect2: error: ld returned 1 exit status Signed-off-by: Chunrong Guo --- meta/recipes-devtools/pseudo/files/symver.patch | 26 --- meta/recipes-devtools/pseudo/pseudo.inc |2 - 2 files changed, 0 insertions(+), 28 deletions(-) delete mode 100644

[OE-core] [PATCH] common-licenses: Adding netperf

2013-07-09 Thread Chunrong Guo
*netperf requires it's own specific license when add meta-openembedded layer Signed-off-by: Chunrong Guo --- meta/files/common-licenses/netperf | 43 1 files changed, 43 insertions(+), 0 deletions(-) create mode 100644 meta/files/c

[OE-core] [PATCH] connman: tist of connman do not support powerpc64

2013-04-26 Thread Chunrong Guo
connman build for powerpc 64bit boards were producing errors like this: | make[1]: *** [plugins/plugins_tist_la-tist.lo] Error 1 | make[1]: *** Waiting for unfinished jobs | make: *** [all] Error 2 | ERROR: oe_runmake failed Signed-off-by: Chunrong Guo --- meta/recipes