Blob Blame History Raw
package osbuild2

type BootISOMonoStageOptions struct {
	Product Product `json:"product"`

	Kernel string `json:"kernel"`

	ISOLabel string `json:"isolabel"`

	EFI EFI `json:"efi,omitempty"`

	ISOLinux ISOLinux `json:"isolinux,omitempty"`

	// Additional kernel boot options
	KernelOpts string `json:"kernel_opts,omitempty"`

	Templates string `json:"templates,omitempty"`

	RootFS RootFS `json:"rootfs,omitempty"`
}

type EFI struct {
	Architectures []string `json:"architectures"`
	Vendor        string   `json:"vendor"`
}

type ISOLinux struct {
	Enabled bool `json:"enabled"`
	Debug   bool `json:"debug,omitempty"`
}

type RootFS struct {
	Compression FSCompression `json:"compression"`

	// Size in MiB
	Size int `json:"size"`
}

type FSCompression struct {
	Method  string               `json:"method"`
	Options FSCompressionOptions `json:"options,omitempty"`
}

type FSCompressionOptions struct {
	BCJ string `json:"bcj"`
}

func (BootISOMonoStageOptions) isStageOptions() {}

type BootISOMonoStageInputs struct {
	RootFS *BootISOMonoStageInput `json:"rootfs"`
	Kernel *BootISOMonoStageInput `json:"kernel,omitempty"`
}

func (BootISOMonoStageInputs) isStageInputs() {}

type BootISOMonoStageInput struct {
	inputCommon
	References BootISOMonoStageReferences `json:"references"`
}

func (BootISOMonoStageInput) isStageInput() {}

type BootISOMonoStageReferences []string

func (BootISOMonoStageReferences) isReferences() {}

// Assemble a file system tree for a bootable ISO
func NewBootISOMonoStage(options *BootISOMonoStageOptions, inputs *BootISOMonoStageInputs) *Stage {
	return &Stage{
		Type:    "org.osbuild.bootiso.mono",
		Options: options,
		Inputs:  inputs,
	}
}