* [PATCH 0/2] cryptodev-fsl/openssl: add missing colon for FILESEXTRAPATHS
@ 2014-07-23 3:30 Hongxu Jia
2014-07-23 3:30 ` [PATCH 1/2] cryptodev-fsl: " Hongxu Jia
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Hongxu Jia @ 2014-07-23 3:30 UTC (permalink / raw)
To: meta-freescale; +Cc: saul.wold, liezhi.yang, Zhangle.Yang
The following changes since commit 0772054526043a29b73345540174f2c344f9a353:
ipc-modules: move to recipes-kernel/ (2014-07-15 14:13:21 +0800)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib hongxu/freescale
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=hongxu/freescale
Hongxu Jia (2):
cryptodev-fsl: add missing colon for FILESEXTRAPATHS
openssl_1.0.1g.bbappend: add missing colon for FILESEXTRAPATHS
recipes-connectivity/openssl/openssl_1.0.1g.bbappend | 2 +-
recipes-kernel/cryptodev/cryptodev-fsl.inc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
--
1.8.1.2
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 1/2] cryptodev-fsl: add missing colon for FILESEXTRAPATHS
2014-07-23 3:30 [PATCH 0/2] cryptodev-fsl/openssl: add missing colon for FILESEXTRAPATHS Hongxu Jia
@ 2014-07-23 3:30 ` Hongxu Jia
2014-07-23 3:30 ` [PATCH 2/2] openssl_1.0.1g.bbappend: " Hongxu Jia
` (2 subsequent siblings)
3 siblings, 0 replies; 7+ messages in thread
From: Hongxu Jia @ 2014-07-23 3:30 UTC (permalink / raw)
To: meta-freescale; +Cc: saul.wold, liezhi.yang, Zhangle.Yang
While other cryptodev-fsl's bbapend to assign FILESEXTRAPATHS,
there was a potential dir split error.
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
---
recipes-kernel/cryptodev/cryptodev-fsl.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes-kernel/cryptodev/cryptodev-fsl.inc b/recipes-kernel/cryptodev/cryptodev-fsl.inc
index 3bdd301..70544e2 100644
--- a/recipes-kernel/cryptodev/cryptodev-fsl.inc
+++ b/recipes-kernel/cryptodev/cryptodev-fsl.inc
@@ -1,4 +1,4 @@
-FILESEXTRAPATHS_prepend := "${THISDIR}/cryptodev-fsl"
+FILESEXTRAPATHS_prepend := "${THISDIR}/cryptodev-fsl:"
SRC_URI_qoriq-ppc = "git://github.com/nmav/cryptodev-linux.git \
file://0001-add-support-for-composite-TLS-SHA1-AES-algorithm-off.patch \
--
1.8.1.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/2] openssl_1.0.1g.bbappend: add missing colon for FILESEXTRAPATHS
2014-07-23 3:30 [PATCH 0/2] cryptodev-fsl/openssl: add missing colon for FILESEXTRAPATHS Hongxu Jia
2014-07-23 3:30 ` [PATCH 1/2] cryptodev-fsl: " Hongxu Jia
@ 2014-07-23 3:30 ` Hongxu Jia
2014-07-23 3:53 ` [PATCH 0/2] cryptodev-fsl/openssl: " Bob Cochran
2014-07-25 8:17 ` Hongxu Jia
3 siblings, 0 replies; 7+ messages in thread
From: Hongxu Jia @ 2014-07-23 3:30 UTC (permalink / raw)
To: meta-freescale; +Cc: saul.wold, liezhi.yang, Zhangle.Yang
While other openssl's bbapend to assign FILESEXTRAPATHS,
there was a potential dir split error.
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
---
recipes-connectivity/openssl/openssl_1.0.1g.bbappend | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes-connectivity/openssl/openssl_1.0.1g.bbappend b/recipes-connectivity/openssl/openssl_1.0.1g.bbappend
index f3e49ae..ab1985b 100644
--- a/recipes-connectivity/openssl/openssl_1.0.1g.bbappend
+++ b/recipes-connectivity/openssl/openssl_1.0.1g.bbappend
@@ -1,4 +1,4 @@
-FILESEXTRAPATHS_prepend := "${THISDIR}/openssl-fsl"
+FILESEXTRAPATHS_prepend := "${THISDIR}/openssl-fsl:"
RDEPENDS_${PN}_class-target += "cryptodev-module"
--
1.8.1.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 0/2] cryptodev-fsl/openssl: add missing colon for FILESEXTRAPATHS
2014-07-23 3:30 [PATCH 0/2] cryptodev-fsl/openssl: add missing colon for FILESEXTRAPATHS Hongxu Jia
2014-07-23 3:30 ` [PATCH 1/2] cryptodev-fsl: " Hongxu Jia
2014-07-23 3:30 ` [PATCH 2/2] openssl_1.0.1g.bbappend: " Hongxu Jia
@ 2014-07-23 3:53 ` Bob Cochran
2014-07-23 4:28 ` [meta-fsl-ppc] " Hongxu Jia
2014-07-25 8:17 ` Hongxu Jia
3 siblings, 1 reply; 7+ messages in thread
From: Bob Cochran @ 2014-07-23 3:53 UTC (permalink / raw)
To: meta-freescale
Just pointing out that it would save time to mention up front that these
are for the meta-fsl-ppc repo (assuming I'm not mistaken) and not the
iMX FSL repos.
Freescale developers have been patching meta-fsl-ppc recently and
[meta-fsl-ppc] has been included in the email subject line, which helps
a great deal when scanning through a lot of emails.
On 07/22/2014 11:30 PM, Hongxu Jia wrote:
> The following changes since commit 0772054526043a29b73345540174f2c344f9a353:
>
> ipc-modules: move to recipes-kernel/ (2014-07-15 14:13:21 +0800)
>
> are available in the git repository at:
>
> git://git.pokylinux.org/poky-contrib hongxu/freescale
> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=hongxu/freescale
>
> Hongxu Jia (2):
> cryptodev-fsl: add missing colon for FILESEXTRAPATHS
> openssl_1.0.1g.bbappend: add missing colon for FILESEXTRAPATHS
>
> recipes-connectivity/openssl/openssl_1.0.1g.bbappend | 2 +-
> recipes-kernel/cryptodev/cryptodev-fsl.inc | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [meta-fsl-ppc] [PATCH 0/2] cryptodev-fsl/openssl: add missing colon for FILESEXTRAPATHS
2014-07-23 3:53 ` [PATCH 0/2] cryptodev-fsl/openssl: " Bob Cochran
@ 2014-07-23 4:28 ` Hongxu Jia
0 siblings, 0 replies; 7+ messages in thread
From: Hongxu Jia @ 2014-07-23 4:28 UTC (permalink / raw)
To: meta-freescale
On 07/23/2014 11:53 AM, Bob Cochran wrote:
> Just pointing out that it would save time to mention up front that
> these are for the meta-fsl-ppc repo (assuming I'm not mistaken) and
> not the iMX FSL repos.
>
Got it, sorry for the missing.
//Hongxu
> Freescale developers have been patching meta-fsl-ppc recently and
> [meta-fsl-ppc] has been included in the email subject line, which
> helps a great deal when scanning through a lot of emails.
>
>
>
> On 07/22/2014 11:30 PM, Hongxu Jia wrote:
>> The following changes since commit
>> 0772054526043a29b73345540174f2c344f9a353:
>>
>> ipc-modules: move to recipes-kernel/ (2014-07-15 14:13:21 +0800)
>>
>> are available in the git repository at:
>>
>> git://git.pokylinux.org/poky-contrib hongxu/freescale
>> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=hongxu/freescale
>>
>> Hongxu Jia (2):
>> cryptodev-fsl: add missing colon for FILESEXTRAPATHS
>> openssl_1.0.1g.bbappend: add missing colon for FILESEXTRAPATHS
>>
>> recipes-connectivity/openssl/openssl_1.0.1g.bbappend | 2 +-
>> recipes-kernel/cryptodev/cryptodev-fsl.inc | 2 +-
>> 2 files changed, 2 insertions(+), 2 deletions(-)
>>
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 0/2] cryptodev-fsl/openssl: add missing colon for FILESEXTRAPATHS
2014-07-23 3:30 [PATCH 0/2] cryptodev-fsl/openssl: add missing colon for FILESEXTRAPATHS Hongxu Jia
` (2 preceding siblings ...)
2014-07-23 3:53 ` [PATCH 0/2] cryptodev-fsl/openssl: " Bob Cochran
@ 2014-07-25 8:17 ` Hongxu Jia
2014-07-25 8:20 ` Hongxu Jia
3 siblings, 1 reply; 7+ messages in thread
From: Hongxu Jia @ 2014-07-25 8:17 UTC (permalink / raw)
To: meta-freescale
Ping
//Hongxu
On 07/23/2014 11:30 AM, Hongxu Jia wrote:
> The following changes since commit 0772054526043a29b73345540174f2c344f9a353:
>
> ipc-modules: move to recipes-kernel/ (2014-07-15 14:13:21 +0800)
>
> are available in the git repository at:
>
> git://git.pokylinux.org/poky-contrib hongxu/freescale
> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=hongxu/freescale
>
> Hongxu Jia (2):
> cryptodev-fsl: add missing colon for FILESEXTRAPATHS
> openssl_1.0.1g.bbappend: add missing colon for FILESEXTRAPATHS
>
> recipes-connectivity/openssl/openssl_1.0.1g.bbappend | 2 +-
> recipes-kernel/cryptodev/cryptodev-fsl.inc | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 0/2] cryptodev-fsl/openssl: add missing colon for FILESEXTRAPATHS
2014-07-25 8:17 ` Hongxu Jia
@ 2014-07-25 8:20 ` Hongxu Jia
0 siblings, 0 replies; 7+ messages in thread
From: Hongxu Jia @ 2014-07-25 8:20 UTC (permalink / raw)
To: meta-freescale
On 07/25/2014 04:17 PM, Hongxu Jia wrote:
> Ping
Oh, this has been merged, sorry for the noisy.
//Hongxu
>
> //Hongxu
>
> On 07/23/2014 11:30 AM, Hongxu Jia wrote:
>> The following changes since commit
>> 0772054526043a29b73345540174f2c344f9a353:
>>
>> ipc-modules: move to recipes-kernel/ (2014-07-15 14:13:21 +0800)
>>
>> are available in the git repository at:
>>
>> git://git.pokylinux.org/poky-contrib hongxu/freescale
>> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=hongxu/freescale
>>
>> Hongxu Jia (2):
>> cryptodev-fsl: add missing colon for FILESEXTRAPATHS
>> openssl_1.0.1g.bbappend: add missing colon for FILESEXTRAPATHS
>>
>> recipes-connectivity/openssl/openssl_1.0.1g.bbappend | 2 +-
>> recipes-kernel/cryptodev/cryptodev-fsl.inc | 2 +-
>> 2 files changed, 2 insertions(+), 2 deletions(-)
>>
>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2014-07-25 8:21 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-23 3:30 [PATCH 0/2] cryptodev-fsl/openssl: add missing colon for FILESEXTRAPATHS Hongxu Jia
2014-07-23 3:30 ` [PATCH 1/2] cryptodev-fsl: " Hongxu Jia
2014-07-23 3:30 ` [PATCH 2/2] openssl_1.0.1g.bbappend: " Hongxu Jia
2014-07-23 3:53 ` [PATCH 0/2] cryptodev-fsl/openssl: " Bob Cochran
2014-07-23 4:28 ` [meta-fsl-ppc] " Hongxu Jia
2014-07-25 8:17 ` Hongxu Jia
2014-07-25 8:20 ` Hongxu Jia
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.