diff --git a/internal/fdo/fdo.go b/internal/fdo/fdo.go new file mode 100644 index 000000000..badd407ad --- /dev/null +++ b/internal/fdo/fdo.go @@ -0,0 +1,15 @@ +package fdo + +import "github.com/osbuild/osbuild-composer/internal/blueprint" + +type Options struct { + ManufacturingServerURL string + DiunPubKeyInsecure string + DiunPubKeyHash string + DiunPubKeyRootCerts string +} + +func FromBP(bpFDO blueprint.FDOCustomization) *Options { + fdo := Options(bpFDO) + return &fdo +}