Update osbuild/images to v0.105.0

This brings a lot of new stuff, among others:
 - Internal image types for RHEL-10 (COMPOSER-2357)
 - Support for Swap partitions in DiskCustomizations (COMPOSER-2400)
 - Support for new partitioning customizations for CS and RHEL
 - Fix for RHEL 8 and 9 AMI boot mode (RHEL-69628)

Signed-off-by: Tomáš Hozza <thozza@redhat.com>
This commit is contained in:
Tomáš Hozza 2024-12-06 11:20:10 +01:00 committed by Ondřej Budai
parent 73f3aa22a2
commit fdff0a903e
36 changed files with 1527 additions and 524 deletions

View file

@ -303,7 +303,7 @@ func (p *AnacondaInstallerISOTree) serialize() osbuild.Pipeline {
Size: fmt.Sprintf("%d", p.PartitionTable.Size),
}))
for _, stage := range osbuild.GenMkfsStages(p.PartitionTable, filename) {
for _, stage := range osbuild.GenFsStages(p.PartitionTable, filename) {
pipeline.AddStage(stage)
}

View file

@ -111,7 +111,7 @@ func (p *CoreOSISOTree) serialize() osbuild.Pipeline {
Size: fmt.Sprintf("%d", p.PartitionTable.Size),
}))
for _, stage := range osbuild.GenMkfsStages(p.PartitionTable, filename) {
for _, stage := range osbuild.GenFsStages(p.PartitionTable, filename) {
pipeline.AddStage(stage)
}