Merge lp:~blake-rouse/curtin/fix-bug-1306164 into lp:~curtin-dev/curtin/trunk

Proposed by Blake Rouse
Status: Merged
Merged at revision: 126
Proposed branch: lp:~blake-rouse/curtin/fix-bug-1306164
Merge into: lp:~curtin-dev/curtin/trunk
Diff against target: 11 lines (+1/-1)
1 file modified
helpers/common (+1/-1)
To merge this branch: bzr merge lp:~blake-rouse/curtin/fix-bug-1306164
Reviewer Review Type Date Requested Status
curtin developers Pending
Review via email: mp+215281@code.launchpad.net

Commit message

UEFI partition is now created 512MiB in size.

Description of the change

Changed pt_uefi to create the UEFI partition 512MiB in size, due to issues with some UEFI systems.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'helpers/common'
2--- helpers/common 2014-04-07 14:14:42 +0000
3+++ helpers/common 2014-04-10 19:04:25 +0000
4@@ -110,7 +110,7 @@
5 [ -b "$target" ] && isblk=true
6
7 # Part 15 is the UEFI partition, part 1 is root
8- sgdisk --new "15:2048:+100M" --typecode=15:ef00 "$target" \
9+ sgdisk --new "15:2048:+512M" --typecode=15:ef00 "$target" \
10 --new "1::$end" --typecode=1:8300 "$target" ||
11 { error "failed to sgdisk for uefi to $target"; return 1; }
12

Subscribers

People subscribed via source and target branches