Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] gnutls: Skip QA check for text relocation on x86
@ 2016-09-23 11:48 Jussi Kukkonen
  2016-09-23 11:52 ` Martin Jansa
  2016-09-23 12:04 ` [PATCHv2] " Jussi Kukkonen
  0 siblings, 2 replies; 3+ messages in thread
From: Jussi Kukkonen @ 2016-09-23 11:48 UTC (permalink / raw)
  To: openembedded-core

Current release has relocations in .text on x86. Silence the
warning for now: Upcoming release should have a real fix.

[YOCTO #10290]

Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
---
 meta/recipes-support/gnutls/gnutls_3.5.3.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-support/gnutls/gnutls_3.5.3.bb b/meta/recipes-support/gnutls/gnutls_3.5.3.bb
index 1bdca6a..2010889 100644
--- a/meta/recipes-support/gnutls/gnutls_3.5.3.bb
+++ b/meta/recipes-support/gnutls/gnutls_3.5.3.bb
@@ -7,3 +7,6 @@ SRC_URI += "file://correct_rpl_gettimeofday_signature.patch \
            "
 SRC_URI[md5sum] = "6c2c7f40ddf52933ee3ca474cb8cb63c"
 SRC_URI[sha256sum] = "92c4bc999a10a1b95299ebefaeea8333f19d8a98d957a35b5eae74881bdb1fef"
+
+# x86 .text relocations should be fixed from 3.5.5 onwards
+INSANE_SKIP_${PN}_append_x86 = "textrel"
-- 
2.1.4



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] gnutls: Skip QA check for text relocation on x86
  2016-09-23 11:48 [PATCH] gnutls: Skip QA check for text relocation on x86 Jussi Kukkonen
@ 2016-09-23 11:52 ` Martin Jansa
  2016-09-23 12:04 ` [PATCHv2] " Jussi Kukkonen
  1 sibling, 0 replies; 3+ messages in thread
From: Martin Jansa @ 2016-09-23 11:52 UTC (permalink / raw)
  To: Jussi Kukkonen; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 1300 bytes --]

On Fri, Sep 23, 2016 at 02:48:21PM +0300, Jussi Kukkonen wrote:
> Current release has relocations in .text on x86. Silence the
> warning for now: Upcoming release should have a real fix.
> 
> [YOCTO #10290]
> 
> Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
> ---
>  meta/recipes-support/gnutls/gnutls_3.5.3.bb | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/meta/recipes-support/gnutls/gnutls_3.5.3.bb b/meta/recipes-support/gnutls/gnutls_3.5.3.bb
> index 1bdca6a..2010889 100644
> --- a/meta/recipes-support/gnutls/gnutls_3.5.3.bb
> +++ b/meta/recipes-support/gnutls/gnutls_3.5.3.bb
> @@ -7,3 +7,6 @@ SRC_URI += "file://correct_rpl_gettimeofday_signature.patch \
>             "
>  SRC_URI[md5sum] = "6c2c7f40ddf52933ee3ca474cb8cb63c"
>  SRC_URI[sha256sum] = "92c4bc999a10a1b95299ebefaeea8333f19d8a98d957a35b5eae74881bdb1fef"
> +
> +# x86 .text relocations should be fixed from 3.5.5 onwards
> +INSANE_SKIP_${PN}_append_x86 = "textrel"

You need leading space.

> -- 
> 2.1.4
> 
> -- 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 169 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCHv2] gnutls: Skip QA check for text relocation on x86
  2016-09-23 11:48 [PATCH] gnutls: Skip QA check for text relocation on x86 Jussi Kukkonen
  2016-09-23 11:52 ` Martin Jansa
@ 2016-09-23 12:04 ` Jussi Kukkonen
  1 sibling, 0 replies; 3+ messages in thread
From: Jussi Kukkonen @ 2016-09-23 12:04 UTC (permalink / raw)
  To: openembedded-core

Current release has relocations in .text on x86. Silence the
warning for now: Upcoming release should have a real fix.

[YOCTO #10290]

Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
---
Changes since v1:
 * Add leading space to _append, thanks Martin. 


 meta/recipes-support/gnutls/gnutls_3.5.3.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-support/gnutls/gnutls_3.5.3.bb b/meta/recipes-support/gnutls/gnutls_3.5.3.bb
index 1bdca6a..8317eb4 100644
--- a/meta/recipes-support/gnutls/gnutls_3.5.3.bb
+++ b/meta/recipes-support/gnutls/gnutls_3.5.3.bb
@@ -7,3 +7,6 @@ SRC_URI += "file://correct_rpl_gettimeofday_signature.patch \
            "
 SRC_URI[md5sum] = "6c2c7f40ddf52933ee3ca474cb8cb63c"
 SRC_URI[sha256sum] = "92c4bc999a10a1b95299ebefaeea8333f19d8a98d957a35b5eae74881bdb1fef"
+
+# x86 .text relocations should be fixed from 3.5.5 onwards
+INSANE_SKIP_${PN}_append_x86 = " textrel"
-- 
2.1.4



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-09-23 12:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-23 11:48 [PATCH] gnutls: Skip QA check for text relocation on x86 Jussi Kukkonen
2016-09-23 11:52 ` Martin Jansa
2016-09-23 12:04 ` [PATCHv2] " Jussi Kukkonen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox