aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorinph2015-02-01 04:25:50 +0000
committerinph2015-02-01 04:25:50 +0000
commitc0bacc1d4392008eeaad6e73f97627956a820f01 (patch)
treea8e1dd76df222ba7ac9bb0a21cedbbdabb1e649b
parentd139f244ea487e679b024fec9729add0b2b19918 (diff)
downloadaur-c0bacc1d4392008eeaad6e73f97627956a820f01.tar.gz
no longer needed
-rw-r--r--docker-nocheck.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/docker-nocheck.patch b/docker-nocheck.patch
deleted file mode 100644
index e4a42a2fe168..000000000000
--- a/docker-nocheck.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- a/daemon/daemon.go
-+++ b/daemon/daemon.go
-@@ -1177,9 +1177,11 @@ 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)
-- }
-+ /*
-+ 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)
-+ }
-+ */
- // Check for unsupported kernel versions
- // FIXME: it would be cleaner to not test for specific versions, but rather
- // test for specific functionalities.