forked from pool/parted
23 lines
839 B
Diff
23 lines
839 B
Diff
|
From c261a9b340e2982a49e055ea6332fd0f49f3d531 Mon Sep 17 00:00:00 2001
|
||
|
From: "Brian C. Lane" <bcl@redhat.com>
|
||
|
Date: Wed, 11 Sep 2013 12:24:51 -0700
|
||
|
Subject: [PATCH] libparted: copy pmbr_boot when duplicating GPT disk
|
||
|
|
||
|
* libparted/labels/gpt.c (gpt_duplicate): copy pmbr_boot flag
|
||
|
---
|
||
|
libparted/labels/gpt.c | 1 +
|
||
|
1 file changed, 1 insertion(+)
|
||
|
|
||
|
Index: parted-3.1/libparted/labels/gpt.c
|
||
|
===================================================================
|
||
|
--- parted-3.1.orig/libparted/labels/gpt.c
|
||
|
+++ parted-3.1/libparted/labels/gpt.c
|
||
|
@@ -660,6 +660,7 @@ gpt_duplicate (const PedDisk *disk)
|
||
|
old_disk_data->data_area.length);
|
||
|
new_disk_data->entry_count = old_disk_data->entry_count;
|
||
|
new_disk_data->uuid = old_disk_data->uuid;
|
||
|
+ new_disk_data->pmbr_boot = old_disk_data->pmbr_boot;
|
||
|
return new_disk;
|
||
|
}
|
||
|
|