[OE-core] [PATCH 1/1] archiver.bbclass: Add default set

2012-05-11 Thread xiaofeng.yan
From: Xiaofeng Yan Add two default set(SOURCE_ARCHIVE_LOG_WITH_SCRIPTS, \ SOURCE_ARCHIVE_PACKAGE_TYPE) to archiver.bbclass for avoiding \ building error when forgetting to assign to them. Signed-off-by: Xiaofeng Yan --- meta/classes/archiver.bbclass |6 +- 1 files changed, 5 insertions

[OE-core] [PATCH 0/1] archiver.bbclass: Add two default set for avoiding error when missing assignment

2012-05-11 Thread xiaofeng.yan
From: Xiaofeng Yan Add two default set(SOURCE_ARCHIVE_LOG_WITH_SCRIPTS, SOURCE_ARCHIVE_PACKAGE_TYPE) to archiver.bbclass for avoiding building error when forgetting to assign to them. Pull URL: git://git.pokylinux.org/poky-contrib.git Branch: xiaofeng/archiver Browse: http://git.pokylinux

[OE-core] [PATCH 0/1] archiver.bbclass: Add two default set for avoiding error when missing assignment

2012-05-16 Thread xiaofeng.yan
From: Xiaofeng Yan This is V2. Add two default set(SOURCE_ARCHIVE_LOG_WITH_SCRIPTS, SOURCE_ARCHIVE_PACKAGE_TYPE) to archiver.bbclass for avoiding building error when forgetting to assign to them. Make some modification according to clarson's suggestion. Thank him correct my fault. The follow

[OE-core] [PATCH 1/1] archiver.bbclass: Add two default set for avoiding error when missing assignment

2012-05-16 Thread xiaofeng.yan
From: Xiaofeng Yan Add two default set(SOURCE_ARCHIVE_LOG_WITH_SCRIPTS, \ SOURCE_ARCHIVE_PACKAGE_TYPE) to archiver.bbclass for avoiding \ building error when forgetting to assign to them. Signed-off-by: Xiaofeng Yan --- meta/classes/archiver.bbclass |4 +++- 1 files changed, 3 insertions(+

[OE-core] [PATCH 1/1] ncurses: Disable parallel make

2012-05-16 Thread xiaofeng.yan
From: Xiaofeng Yan Ncurses failure non-gplv3 build by race issue. So disable parallel \ make when building this package. Signed-off-by: Xiaofeng Yan --- meta/recipes-core/ncurses/ncurses.inc |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/meta/recipes-core/ncurses/ncu

[OE-core] [PATCH 0/1] ncurses: Disable parallel make

2012-05-16 Thread xiaofeng.yan
From: Xiaofeng Yan I can't reproduce bug 2298 after building ncurses successfully many time because Richard said "Its a race issue and sometimes occurs with high values of PARALLEL_MAKE. This means it will sometimes appear and sometimes not appear". I didn't know whether this patch is appropri

[OE-core] [PATCH 0/1] ncurses: Avoid occasional builling failure when having parallel processable task

2012-05-21 Thread xiaofeng.yan
From: Xiaofeng Yan | tic: error while loading shared libraries: /srv/home/pokybuild \ /yocto-autobuilder/yocto-slave/nightly-non-gpl3/build/build/tmp/\ work/x86_64-linux/ncurses-native-5.9-r8.1/ncurses-5.9/narrowc/lib\ /libtinfo.so.5: file too short | ? tic could not build /srv/home/pokybuild/yoc

[OE-core] [PATCH 1/1] ncurses: Avoid occasional builling failure when having parallel processable task

2012-05-21 Thread xiaofeng.yan
From: Xiaofeng Yan ncurses failure non-gplv3 build (race issue) like the following \ error information: | tic: error while loading shared libraries: /srv/home/pokybuild \ /yocto-autobuilder/yocto-slave/nightly-non-gpl3/build/build/tmp/\ work/x86_64-linux/ncurses-native-5.9-r8.1/ncurses-5.9/narro

[OE-core] [PATCH 3/3] task-core-lsb: Add another initscripts to an lsb image

2012-05-29 Thread xiaofeng.yan
From: Xiaofeng Yan Initscripts with stronger functions will replace the simple one, \ which will avoid error when some packages need functions which could \ be absent in the simple initscripts. [YOCTO #2133] Signed-off-by: Xiaofeng Yan --- meta/recipes-extended/tasks/task-core-lsb.bb |3 +

[OE-core] [PATCH 0/3 V1]:lsb: Add initscripts to enhance init functions in an lsb image

2012-05-29 Thread xiaofeng.yan
From: Xiaofeng Yan This initscripts has more functions than the simple one. There could be some errors for the current version with simple functions when running some programs because of absent some functions provided by initscripts. The following changes since commit f28209d9d3c67203a2c7a2b25

[OE-core] [PATCH 1/3] lsbinitscripts: Add initscripts to enhance init functions in an lsb image

2012-05-29 Thread xiaofeng.yan
From: Xiaofeng Yan The version of initscripts has more functions than the simple. \ There could be some errors for current initscripts when running \ some programe because of absent some functions provided by \ initscripts. [YOCTO #2133] Signed-off-by: Xiaofeng Yan --- meta/recipes-extended/l

[OE-core] [PATCH 2/3] lsbinitscripts: Patch file functions for confirming to an lsb image

2012-05-29 Thread xiaofeng.yan
From: Xiaofeng Yan Add the condition judgment to functions for avoiding to print error \ information when system start up at first. [YOCTO #2133] Signed-off-by: Xiaofeng Yan --- .../lsb/lsbinitscripts/functions.patch | 14 ++ 1 files changed, 14 insertions(+), 0 dele

[OE-core] [PATCH 0/2] archiver.bbclass:Improve the usability for the archiver classes

2012-05-30 Thread xiaofeng.yan
From: Xiaofeng Yan The usability of the archiver classes can be improved, beyond the simple addition of default values for the variables. A user could well inherit just archiver rather than the individual useful classes, and not realize it will do nothing. The following changes since commit f

[OE-core] [PATCH 1/2] archiver.bbclass: Improve the usability for the archiver classes

2012-05-30 Thread xiaofeng.yan
From: Xiaofeng Yan The usability of the archiver classes can be improved, beyond the simple addition of default values for the variables. A user could well inherit just archiver rather than the individual useful classes, and not realize it will do nothing. [YOCTO #2472] Signed-off-by: Xiaofeng

[OE-core] [PATCH 2/2] local.conf.sample.extended: Change the usage about arhiver.bbclass

2012-05-30 Thread xiaofeng.yan
From: Xiaofeng Yan Change the usage about arhiver.bbclass due to the improvement for usability of archiver.bbclass [YOCTO #2472] Signed-off-by: Xiaofeng Yan --- meta-yocto/conf/local.conf.sample.extended | 31 --- 1 files changed, 18 insertions(+), 13 deletions(-) d

[OE-core] [PATCH 1/3 V2] lsbinitscripts: Add initscripts to enhance init functions in an lsb image

2012-06-01 Thread xiaofeng.yan
From: Xiaofeng Yan The version of initscripts has more functions than the simple. There could be some errors for current initscripts when running some programe because of absent some functions provided by initscripts. [YOCTO #2133] Signed-off-by: Xiaofeng Yan --- meta/recipes-extended/lsb/lsb

[OE-core] [PATCH 0/3 V2]lsb: Add initscripts to enhance init functions in an lsb image

2012-06-01 Thread xiaofeng.yan
From: Xiaofeng Yan This is V2. The modification is as follows by comparison with V1: - Add extra description in section "DESCRIPTION" - Use bbclass update-alternatives instead of command method. The following changes since commit de4cdfd6bc1280ac7ac0559b87734d26294ef773: Scott Rifenbark (1):

[OE-core] [PATCH 2/3 V2] lsbinitscripts: Patch file functions for confirming to an lsb image

2012-06-01 Thread xiaofeng.yan
From: Xiaofeng Yan Add the condition judgment to functions for avoiding to print error information when system start up at first. [YOCTO #2133] Signed-off-by: Xiaofeng Yan --- .../lsb/lsbinitscripts/functions.patch | 11 +++ 1 files changed, 11 insertions(+), 0 deletions

[OE-core] [PATCH 3/3 V2] task-core-lsb: Add another initscripts to an lsb image

2012-06-01 Thread xiaofeng.yan
From: Xiaofeng Yan Initscripts with stronger functions will replace the simple one, which will avoid error when some packages need functions which could be absent in the simple initscripts. [YOCTO #2133] Signed-off-by: Xiaofeng Yan --- meta/recipes-extended/tasks/task-core-lsb.bb |3 ++-

[OE-core] [PATCH 1/1] archiver.bbclass: Reduce some duplication for function get_licenses

2012-06-06 Thread xiaofeng.yan
From: Xiaofeng Yan The content to modify this bbclass is as follow: - Use the existing functions to get license as a directory instead of rewriting it for avoiding code duplication. - Use SPDXLICENSEMAP to map licenses [YOCTO #2473] Signed-off-by: Xiaofeng Yan --- meta/classes/archiver.bbcl

[OE-core] [PATCH 0/1] archiver.bbclass: Reduce some duplication for function get_licenses

2012-06-06 Thread xiaofeng.yan
From: Xiaofeng Yan The content to modify this bbclass is as follow: - Use the existing functions to get license as a directory instead of rewriting it for avoiding code duplication. - Use SPDXLICENSEMAP to map licenses The following changes since commit df8f55a919b3cc602ce1f1c51630c7edf6e36b5

[OE-core] [PATCH 3/3] lsbinitscripts: Add the header for functions.patch

2012-06-15 Thread xiaofeng.yan
From: Xiaofeng Yan Add upstream-status and signed-off-by to functions.patch Signed-off-by: Xiaofeng Yan --- .../lsb/lsbinitscripts/functions.patch |3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-extended/lsb/lsbinitscripts/functions.patch b/meta/recipes-exte

[OE-core] [PATCH 0/3] lsbinitscripts: support multilib, link function and add the header for patch

2012-06-15 Thread xiaofeng.yan
From: Xiaofeng Yan Add the multilib support for this package and remove the original /etc/init.d/functions and link functions to functions.lsbinitscripts. Add the header for patch. The following changes since commit 3f292735407e50eebb23044fa9f579906a94e800: gcc-configure-target: Fix sysroot

[OE-core] [PATCH 2/3] lsbinitscripts: Remove original /etc/init.d/functions when building an lsb image

2012-06-15 Thread xiaofeng.yan
From: Xiaofeng Yan The linking will fail when an original functions exist. So remove the original functions when building an lsb image and make functions linking to functions.lsbinitscripts successfully. [YOCTO #2133] Signed-off-by: Xiaofeng Yan --- meta/recipes-extended/lsb/lsbinitscripts_9.

[OE-core] [PATCH 1/3] multilib.conf: Add the support of multilib for lsbinitscripts

2012-06-15 Thread xiaofeng.yan
From: Xiaofeng Yan Add the multilib support for this package to multilib.conf because error will appear when building an lib32-core-image-lsb without this patch. [YOCTO #2571] Signed-off-by: Xiaofeng Yan --- meta/conf/multilib.conf |1 + 1 file changed, 1 insertion(+) diff --git a/meta/c