mirror of
				https://github.com/containers/podman.git
				synced 2025-11-01 02:42:11 +08:00 
			
		
		
		
	 7fea46752c
			
		
	
	7fea46752c
	
	
	
		
			
			Support loading and saving tarballs with more than one image. Add a new `/libpod/images/export` endpoint to the rest API to allow for exporting/saving multiple images into an archive. Note that a non-release version of containers/image is vendored. A release version must be vendored before cutting a new Podman release. We force the containers/image version via a replace in the go.mod file; this way go won't try to match the versions. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
		
			
				
	
	
		
			16 lines
		
	
	
		
			312 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			312 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2018 The Go Authors. All rights reserved.
 | |
| // Use of this source code is governed by a BSD-style
 | |
| // license that can be found in the LICENSE file.
 | |
| 
 | |
| // +build !386,!amd64,!amd64p32,!arm64
 | |
| 
 | |
| package cpu
 | |
| 
 | |
| func archInit() {
 | |
| 	if err := readHWCAP(); err != nil {
 | |
| 		return
 | |
| 	}
 | |
| 	doinit()
 | |
| 	Initialized = true
 | |
| }
 |