diff options
author | Khem Raj <raj.khem@gmail.com> | 2017-10-05 17:50:49 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-05 13:44:56 +0000 |
commit | ba6e739ca9099a6d3603e197474e16c75013106b (patch) | |
tree | e29a4c21be2f39f734e7ecf8887586095ac1823f | |
parent | 0caa41cf9692ac2cdf62b31cda8edd8241198697 (diff) | |
download | openembedded-core-ba6e739ca9099a6d3603e197474e16c75013106b.tar.gz openembedded-core-ba6e739ca9099a6d3603e197474e16c75013106b.tar.bz2 openembedded-core-ba6e739ca9099a6d3603e197474e16c75013106b.zip |
openssl: Add support for riscv32/riscv64
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl10.inc | 6 | ||||
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl_1.1.0f.bb | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl10.inc b/meta/recipes-connectivity/openssl/openssl10.inc index a710e9e25a..469775582b 100644 --- a/meta/recipes-connectivity/openssl/openssl10.inc +++ b/meta/recipes-connectivity/openssl/openssl10.inc @@ -135,6 +135,12 @@ do_configure () { linux-powerpc64) target=linux-ppc64 ;; + linux-riscv64) + target=linux-generic64 + ;; + linux-riscv32) + target=linux-generic32 + ;; linux-supersparc) target=linux-sparcv8 ;; diff --git a/meta/recipes-connectivity/openssl/openssl_1.1.0f.bb b/meta/recipes-connectivity/openssl/openssl_1.1.0f.bb index 711a95985a..4517f8734a 100644 --- a/meta/recipes-connectivity/openssl/openssl_1.1.0f.bb +++ b/meta/recipes-connectivity/openssl/openssl_1.1.0f.bb @@ -95,6 +95,12 @@ do_configure () { linux-powerpc64) target=linux-ppc64 ;; + linux-riscv64) + target=linux-generic64 + ;; + linux-riscv32) + target=linux-generic32 + ;; linux-supersparc) target=linux-sparcv9 ;; |