Merge pull request #1691 from mwhudson/flag-reset-partition

set "mstfres" flag on reset partition
This commit is contained in:
Michael Hudson-Doyle 2023-06-13 09:52:51 +12:00 committed by GitHub
commit 6c0ea12857
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -61,7 +61,7 @@ parts:
source: https://git.launchpad.net/curtin
source-type: git
source-commit: 8e74f621e1bd84f804bda280a370440b150f9f40
source-commit: 6412598919202072d0d8b57827a120c963478d35
override-pull: |
craftctl default

View File

@ -27,7 +27,7 @@ from typing import Any, Dict, List, Optional, Set
import attr
from curtin.commands.extract import AbstractSourceHandler
from curtin.storage_config import ptable_uuid_to_flag_entry
from curtin.storage_config import ptable_part_type_to_flag
import pyudev
@ -509,7 +509,7 @@ class FilesystemController(SubiquityController, FilesystemManipulator):
reset_gap, gap = gap.split(reset_size)
self.reset_partition = self.create_partition(
device=reset_gap.device, gap=reset_gap,
spec={'fstype': 'fat32'})
spec={'fstype': 'fat32'}, flag='msftres')
# Should probably set some kind of flag on reset_partition
if choice.capability.is_lvm():
@ -678,7 +678,7 @@ class FilesystemController(SubiquityController, FilesystemManipulator):
type_uuid = structure.gpt_part_type_uuid()
if type_uuid:
part.partition_type = type_uuid
part.flag = ptable_uuid_to_flag_entry(type_uuid)[0]
part.flag = ptable_part_type_to_flag(type_uuid)
if structure.name:
part.partition_name = structure.name
if structure.filesystem: