osbuild-playground: Update for NewPartitionTable change

Uses raw partitioning mode.
This commit is contained in:
Brian C. Lane 2023-09-15 14:14:19 -07:00 committed by Achilleas Koutsou
parent 1903556198
commit fa9f2f86b1

View file

@ -39,7 +39,7 @@ func (img *MyImage) InstantiateManifest(m *manifest.Manifest,
}
// TODO: add helper
pt, err := disk.NewPartitionTable(&basePT, nil, 0, false, nil, rng)
pt, err := disk.NewPartitionTable(&basePT, nil, 0, disk.RawPartitioningMode, nil, rng)
if err != nil {
panic(err)
}