[OE-core] [jethro][PATCH 2/2] openssl: CVE: CVE-2017-3731

2017-02-15 Thread rebecca . swee . fun . chang
From: Alexandru Moise If an SSL/TLS server or client is running on a 32-bit host, and a specific cipher is being used, then a truncated packet can cause that server or client to perform an out-of-bounds read, usually resulting in a crash. Backported from:

[OE-core] [jethro][PATCH 1/2] openssl: Security fix CVE-2016-7055

2017-02-15 Thread rebecca . swee . fun . chang
From: Yi Zhao There is a carry propagating bug in the Broadwell-specific Montgomery multiplication procedure that handles input lengths divisible by, but longer than 256 bits. External References: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-7055

[OE-core] [PATCH] ed: update to 1.14.2

2017-04-11 Thread rebecca . swee . fun . chang
From: "Chang, Rebecca Swee Fun" The previous version of ed-1.14.1 no longer exist in upstream source archive at https://ftp.gnu.org/gnu/ed/. Upstream version was being replaced by a brand new version. Updated version to build and tarball checksums. [YOCTO

[OE-core] [PATCH 0/1] devtool: upgrade: enable branch checking when revision is provided

2017-08-16 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun This work has been similar to [YOCTO #11389] but this is mainly on devtool 'upgrade' subcommand. This feature is important for devtool as this will surely improve the usability of devtool and improve the quality of the recipe being

[OE-core] [PATCH 1/1] devtool: upgrade: enable branch checking when revision is provided

2017-08-16 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun When devtool upgrade is run on a recipe with revision specified that is not on master branch, and branch isn't set by --srcbranch or -B, then we should get the correct branch and append the branch to the URL. If the revision was

[OE-core] [PATCHv3 0/2] devshell: make sure toolchains are populated in sysroot

2017-05-29 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun Rework on PATCHv2. addtask do_prepare_recipe_sysroot is having the same effect on building more dependencies for devshell. The 2nd patch in series is to clean up some trailing whitespaces within devshell.bbclass. I have done some

[OE-core] [PATCH] ghostscript: fix warnings when building for arduino-101-sss

2017-05-03 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun Hi, The following warning occurs when building zephyr with arduino-101-sss. WARNING: /srv/sdc/builds/11319/meta/recipes-extended/ghostscript/ghostscript_9.20.bb: Unable to get checksum for ghostscript SRC_URI entry objarch.h:

[OE-core] [PATCH] ghostscript: check for incompatible TARGET_ARCH

2017-05-03 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun The following warning occurs when building with meta-zephyr with MACHINE set to arduino-101-sss: WARNING: /srv/sdc/builds/11319/meta/recipes-extended/ghostscript/ghostscript_9.20.bb: Unable to get checksum for ghostscript SRC_URI

[OE-core] [PATCH 1/5] scripts/wic: use scriptpath module to find bitbake path and oe lib path

2018-01-10 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun Use the scriptpath module in order to standardize the adding of bitbake and meta/lib path to sys.path. Signed-off-by: Chang Rebecca Swee Fun --- scripts/wic | 7 +++ 1 file changed, 3

[OE-core] [PATCH 0/5] Enable wic in eSDK

2018-01-10 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun Hi all, As the subject called out: this patch series enable wic in eSDK. The details of what I have done are documented within the commit message. Basically wic requires an OE build environment, but we are using a different

[OE-core] [PATCH 2/5] scripts/wic: append bitbake executable file path in eSDK environment

2018-01-10 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun wic needs a set of tools to be available from sysroots. wic will find bitbake executable within the environment, and wic was unable to locate bitbake executable within eSDK because it wasn't setup with the OE build environment

[OE-core] [PATCH 4/5] scripts/wic: explicitly set BUILDDIR within eSDK

2018-01-10 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun When we run wic within eSDK: $ wic create mkefidisk -e core-image-minimal ERROR: BUILDDIR not found, exiting. (Did you forget to source oe-init-build-env?) In order to figure out variable values, one must have sourced the OE build

[OE-core] [PATCH 3/5] scripts/wic: fix error of import wic module in eSDK environment

2018-01-10 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun wic modules in scripts/lib/ are needed for wic to work, but path to the python module is not exported in eSDK environment and we were using an absolutized path of wic script within the sysroots. We now changed to use real script

[OE-core] [PATCH 5/5] classes/populate_sdk_ext: support wic in eSDK

2018-01-10 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun Make 'wic' image creation tool/command available in eSDK environment. This would allow eSDK users to manipulate images within eSDK environment. [YOCTO #12177] Signed-off-by: Chang Rebecca Swee Fun

[OE-core] [PATCHv2 4/5] scripts/wic: explicitly set BUILDDIR within eSDK

2018-01-11 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun When we run wic within eSDK: $ wic create mkefidisk -e core-image-minimal ERROR: BUILDDIR not found, exiting. (Did you forget to source oe-init-build-env?) In order to figure out variable values, one must have sourced the OE build

[OE-core] [PATCHv2 3/5] scripts/wic: fix error of import wic module in eSDK environment

2018-01-11 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun wic modules in scripts/lib/ are needed for wic to work, but path to the python module is not exported in eSDK environment and we were using an absolutized path of wic script within the sysroots. We now changed to use real script

[OE-core] [PATCHv2 5/5] classes/populate_sdk_ext: support wic in eSDK

2018-01-11 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun Make 'wic' image creation tool/command available in eSDK environment. This would allow eSDK users to manipulate images within eSDK environment. [YOCTO #12177] Signed-off-by: Chang Rebecca Swee Fun

[OE-core] [PATCHv2 2/5] scripts/wic: append bitbake executable file path in eSDK environment

2018-01-11 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun wic needs a set of tools to be available from sysroots. wic will find bitbake executable within the environment, and wic was unable to locate bitbake executable within eSDK because it wasn't setup with the OE build environment

[OE-core] [PATCHv2 1/5] scripts/wic: use scriptpath module to find bitbake path and oe lib path

2018-01-11 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun Use the scriptpath module in order to standardize the adding of bitbake and meta/lib path to sys.path. Signed-off-by: Chang Rebecca Swee Fun --- scripts/wic | 7 +++ 1 file changed, 3

[OE-core] [PATCHv2 0/5] Enable wic in eSDK

2018-01-11 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun Hi all, Resend as v2 as I realized an issue with BUILDDIR being set was not correct. I made the correction on Patch 4 by setting BUILDDIR to sdkroot variable (eSDK base path) before we alter the variable for bitbake executable file

[OE-core] [PATCHv2] bmap-tools: change SRC_URI to use tarball instead

2018-02-08 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun Tarball sources can be checksummed and are faster to download. Signed-off-by: Chang Rebecca Swee Fun --- meta/recipes-support/bmap-tools/bmap-tools_3.4.bb | 6 +++--- 1 file changed, 3

[OE-core] [PATCHv3] bmap-tools: change SRC_URI to use tarball instead

2018-02-09 Thread rebecca . swee . fun . chang
From: Chang Rebecca Swee Fun Tarball sources can be checksummed and are faster to download. Added UPSTREAM_CHECK_URI to improve recipe maintenance and to verify upstream version check is still work. Signed-off-by: Chang Rebecca Swee Fun