forked from pool/parted
- Drop using deprecated configure option "--disable-Werror" - Drop (SUSE specific) support for hybrid pMBR (gpt_sync_mbr label) (fate#317849, bsc#1041322) - remove: parted-gpt-mbr-sync.patch - remove: libparted-ppc-prepboot-in-syncmbr.patch - remove: parted-workaround-windows7-gpt-implementation.patch - refresh patches - libparted: Fix starting CHS in protective MBR (bsc#969165) - add: libparted-fix-starting-CHS-in-protective-MBR.patch OBS-URL: https://build.opensuse.org/request/show/519106 OBS-URL: https://build.opensuse.org/package/show/Base:System/parted?expand=0&rev=132
214 lines
7.4 KiB
Diff
214 lines
7.4 KiB
Diff
From: Arvin Schnell <aschnell@suse.com>
|
|
Date: Thu, 22 Dec 2016 14:36:43 -0800
|
|
Subject: libparted: set swap flag on GPT partitions
|
|
References: fate#314888, bsc#1044536
|
|
Patch-mainline: v3.3
|
|
Git-commit: c7ce5d48f6facccf617467d79c68ccce0bc27dcd
|
|
|
|
The filesystem type is still detected as befor, but now setting the
|
|
'swap' flag will set the partition GUID to PARTITION_SWAP_GUID.
|
|
|
|
Signed-off-by: Brian C. Lane <bcl@redhat.com>
|
|
[sparschauer: Drop setting PARTITION_SWAP_GUID when the FS is swap]
|
|
Signed-off-by: Sebastian Parschauer <sparschauer@suse.de>
|
|
---
|
|
libparted/labels/gpt.c | 42 +++++++++++++++++++++++++++++++++++++++---
|
|
1 file changed, 39 insertions(+), 3 deletions(-)
|
|
|
|
--- a/libparted/labels/gpt.c
|
|
+++ b/libparted/labels/gpt.c
|
|
@@ -290,6 +290,7 @@ typedef struct _GPTPartitionData
|
|
efi_char16_t name[37];
|
|
char *translated_name;
|
|
int lvm;
|
|
+ int swap;
|
|
int raid;
|
|
int boot;
|
|
int bios_grub;
|
|
@@ -818,7 +819,8 @@ _parse_part_entry (PedDisk *disk, GuidPa
|
|
gpt_part_data->name[i] = 0;
|
|
gpt_part_data->translated_name = 0;
|
|
|
|
- gpt_part_data->lvm = gpt_part_data->raid
|
|
+ gpt_part_data->lvm = gpt_part_data->swap
|
|
+ = gpt_part_data->raid
|
|
= gpt_part_data->boot = gpt_part_data->hp_service
|
|
= gpt_part_data->hidden = gpt_part_data->msftres
|
|
= gpt_part_data->msftdata
|
|
@@ -841,6 +843,8 @@ _parse_part_entry (PedDisk *disk, GuidPa
|
|
gpt_part_data->raid = 1;
|
|
else if (!guid_cmp (gpt_part_data->type, PARTITION_LVM_GUID))
|
|
gpt_part_data->lvm = 1;
|
|
+ else if (!guid_cmp (gpt_part_data->type, PARTITION_SWAP_GUID))
|
|
+ gpt_part_data->swap = 1;
|
|
else if (!guid_cmp (gpt_part_data->type, PARTITION_HPSERVICE_GUID))
|
|
gpt_part_data->hp_service = 1;
|
|
else if (!guid_cmp (gpt_part_data->type, PARTITION_MSFT_RESERVED_GUID))
|
|
@@ -1361,6 +1365,7 @@ gpt_partition_new (const PedDisk *disk,
|
|
|
|
gpt_part_data->type = PARTITION_LINUX_DATA_GUID;
|
|
gpt_part_data->lvm = 0;
|
|
+ gpt_part_data->swap = 0;
|
|
gpt_part_data->raid = 0;
|
|
gpt_part_data->boot = 0;
|
|
gpt_part_data->bios_grub = 0;
|
|
@@ -1449,6 +1454,11 @@ gpt_partition_set_system (PedPartition *
|
|
gpt_part_data->type = PARTITION_LVM_GUID;
|
|
return 1;
|
|
}
|
|
+ if (gpt_part_data->swap)
|
|
+ {
|
|
+ gpt_part_data->type = PARTITION_SWAP_GUID;
|
|
+ return 1;
|
|
+ }
|
|
if (gpt_part_data->raid)
|
|
{
|
|
gpt_part_data->type = PARTITION_RAID_GUID;
|
|
@@ -1513,11 +1523,6 @@ gpt_partition_set_system (PedPartition *
|
|
gpt_part_data->type = PARTITION_APPLE_HFS_GUID;
|
|
return 1;
|
|
}
|
|
- if (strstr (fs_type->name, "swap"))
|
|
- {
|
|
- gpt_part_data->type = PARTITION_SWAP_GUID;
|
|
- return 1;
|
|
- }
|
|
}
|
|
|
|
gpt_part_data->type = PARTITION_LINUX_DATA_GUID;
|
|
@@ -1636,6 +1641,7 @@ gpt_partition_set_flag (PedPartition *pa
|
|
if (state)
|
|
gpt_part_data->raid
|
|
= gpt_part_data->lvm
|
|
+ = gpt_part_data->swap
|
|
= gpt_part_data->bios_grub
|
|
= gpt_part_data->hp_service
|
|
= gpt_part_data->msftres
|
|
@@ -1650,6 +1656,7 @@ gpt_partition_set_flag (PedPartition *pa
|
|
if (state)
|
|
gpt_part_data->raid
|
|
= gpt_part_data->lvm
|
|
+ = gpt_part_data->swap
|
|
= gpt_part_data->boot
|
|
= gpt_part_data->hp_service
|
|
= gpt_part_data->msftres
|
|
@@ -1664,6 +1671,7 @@ gpt_partition_set_flag (PedPartition *pa
|
|
if (state)
|
|
gpt_part_data->boot
|
|
= gpt_part_data->lvm
|
|
+ = gpt_part_data->swap
|
|
= gpt_part_data->bios_grub
|
|
= gpt_part_data->hp_service
|
|
= gpt_part_data->msftres
|
|
@@ -1677,6 +1685,22 @@ gpt_partition_set_flag (PedPartition *pa
|
|
gpt_part_data->lvm = state;
|
|
if (state)
|
|
gpt_part_data->boot
|
|
+ = gpt_part_data->swap
|
|
+ = gpt_part_data->raid
|
|
+ = gpt_part_data->bios_grub
|
|
+ = gpt_part_data->hp_service
|
|
+ = gpt_part_data->msftres
|
|
+ = gpt_part_data->msftdata
|
|
+ = gpt_part_data->msftrecv
|
|
+ = gpt_part_data->prep
|
|
+ = gpt_part_data->irst
|
|
+ = gpt_part_data->atvrecv = 0;
|
|
+ return gpt_partition_set_system (part, part->fs_type);
|
|
+ case PED_PARTITION_SWAP:
|
|
+ gpt_part_data->swap = state;
|
|
+ if (state)
|
|
+ gpt_part_data->boot
|
|
+ = gpt_part_data->lvm
|
|
= gpt_part_data->raid
|
|
= gpt_part_data->bios_grub
|
|
= gpt_part_data->hp_service
|
|
@@ -1693,6 +1717,7 @@ gpt_partition_set_flag (PedPartition *pa
|
|
gpt_part_data->boot
|
|
= gpt_part_data->raid
|
|
= gpt_part_data->lvm
|
|
+ = gpt_part_data->swap
|
|
= gpt_part_data->bios_grub
|
|
= gpt_part_data->msftres
|
|
= gpt_part_data->msftdata
|
|
@@ -1707,6 +1732,7 @@ gpt_partition_set_flag (PedPartition *pa
|
|
gpt_part_data->boot
|
|
= gpt_part_data->raid
|
|
= gpt_part_data->lvm
|
|
+ = gpt_part_data->swap
|
|
= gpt_part_data->bios_grub
|
|
= gpt_part_data->hp_service
|
|
= gpt_part_data->msftdata
|
|
@@ -1721,6 +1747,7 @@ gpt_partition_set_flag (PedPartition *pa
|
|
gpt_part_data->boot
|
|
= gpt_part_data->raid
|
|
= gpt_part_data->lvm
|
|
+ = gpt_part_data->swap
|
|
= gpt_part_data->bios_grub
|
|
= gpt_part_data->hp_service
|
|
= gpt_part_data->msftres
|
|
@@ -1739,6 +1766,7 @@ gpt_partition_set_flag (PedPartition *pa
|
|
gpt_part_data->boot
|
|
= gpt_part_data->raid
|
|
= gpt_part_data->lvm
|
|
+ = gpt_part_data->swap
|
|
= gpt_part_data->bios_grub
|
|
= gpt_part_data->hp_service
|
|
= gpt_part_data->msftdata
|
|
@@ -1753,6 +1781,7 @@ gpt_partition_set_flag (PedPartition *pa
|
|
gpt_part_data->boot
|
|
= gpt_part_data->raid
|
|
= gpt_part_data->lvm
|
|
+ = gpt_part_data->swap
|
|
= gpt_part_data->bios_grub
|
|
= gpt_part_data->hp_service
|
|
= gpt_part_data->msftres
|
|
@@ -1766,6 +1795,7 @@ gpt_partition_set_flag (PedPartition *pa
|
|
gpt_part_data->boot
|
|
= gpt_part_data->raid
|
|
= gpt_part_data->lvm
|
|
+ = gpt_part_data->swap
|
|
= gpt_part_data->bios_grub
|
|
= gpt_part_data->hp_service
|
|
= gpt_part_data->msftres
|
|
@@ -1779,6 +1809,7 @@ gpt_partition_set_flag (PedPartition *pa
|
|
gpt_part_data->boot
|
|
= gpt_part_data->raid
|
|
= gpt_part_data->lvm
|
|
+ = gpt_part_data->swap
|
|
= gpt_part_data->bios_grub
|
|
= gpt_part_data->hp_service
|
|
= gpt_part_data->msftres
|
|
@@ -1793,7 +1824,6 @@ gpt_partition_set_flag (PedPartition *pa
|
|
case PED_PARTITION_LEGACY_BOOT:
|
|
gpt_part_data->legacy_boot = state;
|
|
return 1;
|
|
- case PED_PARTITION_SWAP:
|
|
case PED_PARTITION_ROOT:
|
|
case PED_PARTITION_LBA:
|
|
default:
|
|
@@ -1839,6 +1869,7 @@ gpt_partition_get_flag (const PedPartiti
|
|
case PED_PARTITION_IRST:
|
|
return gpt_part_data->irst;
|
|
case PED_PARTITION_SWAP:
|
|
+ return gpt_part_data->swap;
|
|
case PED_PARTITION_LBA:
|
|
case PED_PARTITION_ROOT:
|
|
default:
|
|
@@ -1855,6 +1886,7 @@ gpt_partition_is_flag_available (const P
|
|
{
|
|
case PED_PARTITION_RAID:
|
|
case PED_PARTITION_LVM:
|
|
+ case PED_PARTITION_SWAP:
|
|
case PED_PARTITION_BOOT:
|
|
case PED_PARTITION_BIOS_GRUB:
|
|
case PED_PARTITION_HPSERVICE:
|
|
@@ -1868,7 +1900,6 @@ gpt_partition_is_flag_available (const P
|
|
case PED_PARTITION_IRST:
|
|
case PED_PARTITION_ESP:
|
|
return 1;
|
|
- case PED_PARTITION_SWAP:
|
|
case PED_PARTITION_ROOT:
|
|
case PED_PARTITION_LBA:
|
|
default:
|