Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. commit 5e6a20cfd4072040750b83e7d92bf9e681ceea97
  2. Author: Emil Aura <aura.emil@gmail.com>
  3. Date: Fri Jan 30 10:18:34 2015 +0100
  4.  
  5. added 32 bit support
  6.  
  7. diff --git a/daemon/daemon.go b/daemon/daemon.go
  8. index c03e9d7..f94780b 100644
  9. --- a/daemon/daemon.go
  10. +++ b/daemon/daemon.go
  11. @@ -1207,7 +1207,7 @@ func (daemon *Daemon) ImageGetCached(imgID string, config *runconfig.Config) (*i
  12.  
  13. func checkKernelAndArch() error {
  14. // Check for unsupported architectures
  15. - if runtime.GOARCH != "amd64" {
  16. + if runtime.GOARCH != "amd64" && runtime.GOARCH != "386" {
  17. return fmt.Errorf("The Docker runtime currently only supports amd64 (not %s). This will change in the future. Aborting.", runtime.GOARCH)
  18. }
  19. // Check for unsupported kernel versions
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement