go.mod: update images to 0.11
Mainly to include: - distro/rhel9: Make /boot 600 MiB big on RHEL 9.3+ - fedora: exclude sdubby - Minimal image builds Signed-off-by: Ondřej Budai <ondrej@budai.cz>
This commit is contained in:
parent
edc45fde72
commit
19edaca01a
213 changed files with 4113 additions and 3823 deletions
7
vendor/github.com/osbuild/images/pkg/image/disk.go
generated
vendored
7
vendor/github.com/osbuild/images/pkg/image/disk.go
generated
vendored
|
|
@ -32,6 +32,10 @@ type DiskImage struct {
|
|||
OSProduct string
|
||||
OSVersion string
|
||||
OSNick string
|
||||
|
||||
// InstallWeakDeps enables installation of weak dependencies for packages
|
||||
// that are statically defined for the payload pipeline of the image.
|
||||
InstallWeakDeps *bool
|
||||
}
|
||||
|
||||
func NewDiskImage() *DiskImage {
|
||||
|
|
@ -57,6 +61,9 @@ func (img *DiskImage) InstantiateManifest(m *manifest.Manifest,
|
|||
osPipeline.OSProduct = img.OSProduct
|
||||
osPipeline.OSVersion = img.OSVersion
|
||||
osPipeline.OSNick = img.OSNick
|
||||
if img.InstallWeakDeps != nil {
|
||||
osPipeline.InstallWeakDeps = *img.InstallWeakDeps
|
||||
}
|
||||
|
||||
rawImagePipeline := manifest.NewRawImage(buildPipeline, osPipeline)
|
||||
rawImagePipeline.PartTool = img.PartTool
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue