From 02a97554192c1e937fffbc97de2a86932a19934a Mon Sep 17 00:00:00 2001 From: laokz Date: Tue, 8 Nov 2022 11:08:58 +0800 Subject: [PATCH] add riscv64 support in patch 0002 Signed-off-by: @laokz --- ...ed-platform-without-ETCD_UNSUPPORTED_ARCH=arm64-set.patch | 2 +- etcd.spec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/0002-Etcd-on-unsupported-platform-without-ETCD_UNSUPPORTED_ARCH=arm64-set.patch b/0002-Etcd-on-unsupported-platform-without-ETCD_UNSUPPORTED_ARCH=arm64-set.patch index fbbe958..16a8794 100644 --- a/0002-Etcd-on-unsupported-platform-without-ETCD_UNSUPPORTED_ARCH=arm64-set.patch +++ b/0002-Etcd-on-unsupported-platform-without-ETCD_UNSUPPORTED_ARCH=arm64-set.patch @@ -19,7 +19,7 @@ index 73328a7..1907f99 100644 func checkSupportArch() { // TODO qualify arm64 - if runtime.GOARCH == "amd64" || runtime.GOARCH == "ppc64le" { -+ if runtime.GOARCH == "amd64" || runtime.GOARCH == "ppc64le" || runtime.GOARCH == "arm64" { ++ if runtime.GOARCH == "amd64" || runtime.GOARCH == "ppc64le" || runtime.GOARCH == "arm64" || runtime.GOARCH == "riscv64" { return } // unsupported arch only configured via environment variable diff --git a/etcd.spec b/etcd.spec index c236d6d..6df100c 100644 --- a/etcd.spec +++ b/etcd.spec @@ -31,7 +31,7 @@ system.} %global gosupfiles integration/fixtures/* etcdserver/api/v2http/testdata/* Name: etcd -Release: 4 +Release: 5 Summary: Distributed reliable key-value store for the most critical data of a distributed system # Upstream license specification: Apache-2.0 @@ -148,6 +148,9 @@ getent passwd %{name} >/dev/null || useradd -r -g %{name} -d %{_sharedstatedir}/ %endif %changelog +* Tue Nov 08 2022 laokz - 3.4.14-5 +- add riscv64 support in patch 0002 + * Wed Sep 2021 jikui - 3.4.14-4 - modify build flags for secure compilation options -- Gitee