Skip to content

Commit

Permalink
distro/fedora: use new const for all occurrences of Type: "83"
Browse files Browse the repository at this point in the history
  • Loading branch information
achilleas-k committed Nov 6, 2024
1 parent 4123bd5 commit 88d6a6a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkg/distro/fedora/partition_tables.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ var minimalrawPartitionTables = distro.BasePartitionTableMap{
},
{
Size: 1 * datasizes.GibiByte,
Type: "83",
Type: disk.DosLinuxTypeID,
Payload: &disk.Filesystem{
Type: "ext4",
Mountpoint: "/boot",
Expand All @@ -250,7 +250,7 @@ var minimalrawPartitionTables = distro.BasePartitionTableMap{
},
{
Size: 2 * datasizes.GibiByte,
Type: "83",
Type: disk.DosLinuxTypeID,
Payload: &disk.Filesystem{
Type: "ext4",
Label: "root",
Expand Down Expand Up @@ -333,7 +333,7 @@ var iotBasePartitionTables = distro.BasePartitionTableMap{
},
{
Size: 1 * datasizes.GibiByte,
Type: "83",
Type: disk.DosLinuxTypeID,
Payload: &disk.Filesystem{
Type: "ext4",
Mountpoint: "/boot",
Expand All @@ -345,7 +345,7 @@ var iotBasePartitionTables = distro.BasePartitionTableMap{
},
{
Size: 2569 * datasizes.MebiByte,
Type: "83",
Type: disk.DosLinuxTypeID,
Payload: &disk.Filesystem{
Type: "ext4",
Label: "root",
Expand Down

0 comments on commit 88d6a6a

Please sign in to comment.