From 6a62ed29b64ab7a08e8238cfefd6136140ab6c0a Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Sat, 3 Jan 2015 07:11:47 +0000 Subject: [PATCH] enable-non-amd64-arches Gbp-Pq: Name enable-non-amd64-arches.patch --- daemon/daemon.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/daemon.go b/daemon/daemon.go index 76cb14c8..194faeaa 100644 --- a/daemon/daemon.go +++ b/daemon/daemon.go @@ -1104,7 +1104,7 @@ func (daemon *Daemon) ImageGetCached(imgID string, config *runconfig.Config) (*i func checkKernelAndArch() error { // Check for unsupported architectures if runtime.GOARCH != "amd64" { - return fmt.Errorf("The Docker runtime currently only supports amd64 (not %s). This will change in the future. Aborting.", runtime.GOARCH) + fmt.Fprintf(os.Stderr, "WARNING: The Docker runtime currently only officially supports amd64 (not %s). THIS BUILD IS NOT OFFICIAL AND WILL NOT BE SUPPORTED BY DOCKER UPSTREAM.", runtime.GOARCH) } // Check for unsupported kernel versions // FIXME: it would be cleaner to not test for specific versions, but rather -- 2.30.2