github.com/apptainer/singularity@v3.1.1+incompatible/internal/pkg/build/sources/packer_ext3.go (about)

     1  // Copyright (c) 2019, Sylabs Inc. All rights reserved.
     2  // This software is licensed under a 3-clause BSD license. Please consult the
     3  // LICENSE.md file distributed with the sources of this project regarding your
     4  // rights to use or distribute this software.
     5  
     6  package sources
     7  
     8  import (
     9  	"github.com/sylabs/singularity/pkg/build/types"
    10  	"github.com/sylabs/singularity/pkg/util/loop"
    11  )
    12  
    13  // Ext3Packer holds the locations of where to back from and to, aswell as image offset info
    14  type Ext3Packer struct {
    15  	srcfile string
    16  	b       *types.Bundle
    17  	info    *loop.Info64
    18  }