Hi,
The following patch solves the issue.
Index: etcd-3.1.8+dfsg/etcdmain/etcd.go
===================================================================
--- etcd-3.1.8+dfsg.orig/etcdmain/etcd.go
+++ etcd-3.1.8+dfsg/etcdmain/etcd.go
@@ -399,7 +399,7 @@ func setupLogging(cfg *config) {
Patch and debdiff is attached here. Thanks.
Harish Sriram
The following patch solves the issue.
Index: etcd-3.1.8+dfsg/etcdmain/etcd.go
===================================================================
--- etcd-3.1.8+dfsg.orig/etcdmain/etcd.go
+++ etcd-3.1.8+dfsg/etcdmain/etcd.go
@@ -399,7 +399,7 @@ func setupLogging(cfg *config) {
func checkSupportArch() {
// TODO qualify arm64
- if runtime.GOARCH == "amd64" {
+ if runtime.GOARCH == "amd64" || runtime.GOARCH == "ppc64le" {
return
}
if env, ok := os.LookupEnv("ETCD_UNSUPPORTED_ARCH"); ok && env == runtime.GOARCH {
// TODO qualify arm64
- if runtime.GOARCH == "amd64" {
+ if runtime.GOARCH == "amd64" || runtime.GOARCH == "ppc64le" {
return
}
if env, ok := os.LookupEnv("ETCD_UNSUPPORTED_ARCH"); ok && env == runtime.GOARCH {
Patch and debdiff is attached here. Thanks.
Harish Sriram
debdiff_etcd.debdiff
Description: Binary data
fix-service-ppc64le.patch
Description: Binary data
_______________________________________________ Pkg-go-maintainers mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-go-maintainers
