All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] tune-power9: Enable qemu-usermode
@ 2021-02-22  1:28 Khem Raj
  2021-02-22  1:28 ` [PATCH 2/2] nettle: Upgrade to 3.7.1 Khem Raj
  0 siblings, 1 reply; 2+ messages in thread
From: Khem Raj @ 2021-02-22  1:28 UTC (permalink / raw)
  To: openembedded-core; +Cc: Khem Raj

With latest qemu it works ok

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta/conf/machine/include/tune-power9.inc | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/meta/conf/machine/include/tune-power9.inc b/meta/conf/machine/include/tune-power9.inc
index e33536c241..401b73744f 100644
--- a/meta/conf/machine/include/tune-power9.inc
+++ b/meta/conf/machine/include/tune-power9.inc
@@ -29,6 +29,3 @@ PACKAGE_EXTRA_ARCHS_tune-ppc64p9le = "${PACKAGE_EXTRA_ARCHS_tune-powerpc64le} pp
 
 # glibc configure options to get power9 specific library
 GLIBC_EXTRA_OECONF += "${@bb.utils.contains('TUNE_FEATURES', 'power9', '--with-cpu=power9', '', d)}"
-
-# QEMU usermode fails with invalid instruction error
-MACHINE_FEATURES_BACKFILL_CONSIDERED_append = "${@bb.utils.contains('TUNE_FEATURES', 'power9', ' qemu-usermode', '', d)}"
-- 
2.30.1


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

* [PATCH 2/2] nettle: Upgrade to 3.7.1
  2021-02-22  1:28 [PATCH 1/2] tune-power9: Enable qemu-usermode Khem Raj
@ 2021-02-22  1:28 ` Khem Raj
  0 siblings, 0 replies; 2+ messages in thread
From: Khem Raj @ 2021-02-22  1:28 UTC (permalink / raw)
  To: openembedded-core; +Cc: Khem Raj

bugfix release [1]

[1] https://lists.gnu.org/archive/html/info-gnu/2021-02/msg00011.html

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../Add-target-to-only-build-tests-not-run-them.patch           | 0
 .../check-header-files-of-openssl-only-if-enable_.patch         | 0
 .../nettle/{nettle-3.7 => nettle}/dlopen-test.patch             | 0
 meta/recipes-support/nettle/{nettle-3.7 => nettle}/run-ptest    | 0
 meta/recipes-support/nettle/{nettle_3.7.bb => nettle_3.7.1.bb}  | 2 +-
 5 files changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/nettle/{nettle-3.7 => nettle}/Add-target-to-only-build-tests-not-run-them.patch (100%)
 rename meta/recipes-support/nettle/{nettle-3.7 => nettle}/check-header-files-of-openssl-only-if-enable_.patch (100%)
 rename meta/recipes-support/nettle/{nettle-3.7 => nettle}/dlopen-test.patch (100%)
 rename meta/recipes-support/nettle/{nettle-3.7 => nettle}/run-ptest (100%)
 rename meta/recipes-support/nettle/{nettle_3.7.bb => nettle_3.7.1.bb} (95%)

diff --git a/meta/recipes-support/nettle/nettle-3.7/Add-target-to-only-build-tests-not-run-them.patch b/meta/recipes-support/nettle/nettle/Add-target-to-only-build-tests-not-run-them.patch
similarity index 100%
rename from meta/recipes-support/nettle/nettle-3.7/Add-target-to-only-build-tests-not-run-them.patch
rename to meta/recipes-support/nettle/nettle/Add-target-to-only-build-tests-not-run-them.patch
diff --git a/meta/recipes-support/nettle/nettle-3.7/check-header-files-of-openssl-only-if-enable_.patch b/meta/recipes-support/nettle/nettle/check-header-files-of-openssl-only-if-enable_.patch
similarity index 100%
rename from meta/recipes-support/nettle/nettle-3.7/check-header-files-of-openssl-only-if-enable_.patch
rename to meta/recipes-support/nettle/nettle/check-header-files-of-openssl-only-if-enable_.patch
diff --git a/meta/recipes-support/nettle/nettle-3.7/dlopen-test.patch b/meta/recipes-support/nettle/nettle/dlopen-test.patch
similarity index 100%
rename from meta/recipes-support/nettle/nettle-3.7/dlopen-test.patch
rename to meta/recipes-support/nettle/nettle/dlopen-test.patch
diff --git a/meta/recipes-support/nettle/nettle-3.7/run-ptest b/meta/recipes-support/nettle/nettle/run-ptest
similarity index 100%
rename from meta/recipes-support/nettle/nettle-3.7/run-ptest
rename to meta/recipes-support/nettle/nettle/run-ptest
diff --git a/meta/recipes-support/nettle/nettle_3.7.bb b/meta/recipes-support/nettle/nettle_3.7.1.bb
similarity index 95%
rename from meta/recipes-support/nettle/nettle_3.7.bb
rename to meta/recipes-support/nettle/nettle_3.7.1.bb
index 2c219c2a12..d6bb1c84c6 100644
--- a/meta/recipes-support/nettle/nettle_3.7.bb
+++ b/meta/recipes-support/nettle/nettle_3.7.1.bb
@@ -23,7 +23,7 @@ SRC_URI_append_class-target = "\
             file://dlopen-test.patch \
             "
 
-SRC_URI[sha256sum] = "f001f64eb444bf13dd91bceccbc20acbc60c4311d6e2b20878452eb9a9cec75a"
+SRC_URI[sha256sum] = "156621427c7b00a75ff9b34b770b95d34f80ef7a55c3407de94b16cbf436c42e"
 
 UPSTREAM_CHECK_REGEX = "nettle-(?P<pver>\d+(\.\d+)+)\.tar"
 
-- 
2.30.1


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

end of thread, other threads:[~2021-02-22  1:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-22  1:28 [PATCH 1/2] tune-power9: Enable qemu-usermode Khem Raj
2021-02-22  1:28 ` [PATCH 2/2] nettle: Upgrade to 3.7.1 Khem Raj

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.