Skip to content

Commit 29dfd78

Browse files
authored
Daemon: double encrypted boot size (#631)
* Daemon: double encrypted boot size * Update installer.appdata.xml.in
1 parent 31bcbbe commit 29dfd78

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

daemon/Daemon.vala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,10 +288,10 @@ public class InstallerDaemon.Daemon : GLib.Object {
288288
value = 278
289289
};
290290

291-
// 512MB /boot partition that's created if we're doing encryption
291+
// 1024MB /boot partition that's created if we're doing encryption
292292
var boot_sector = Distinst.Sector () {
293293
flag = Distinst.SectorKind.MEGABYTE,
294-
value = efi_sector.value + 512
294+
value = efi_sector.value + 1024
295295
};
296296

297297
// 4GB swap partition at the end

data/installer.appdata.xml.in

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@
1010
<p>Step by step installer for elementary OS itself.</p>
1111
</description>
1212
<releases>
13+
<release version="1.0.5" date="2021-12-16" urgency="medium">
14+
<p>Improvements:</p>
15+
<ul>
16+
<li>Double the boot partition size for encrypted installs</li>
17+
<li>Updated translations</li>
18+
</ul>
19+
</release>
1320
<release version="1.0.4" date="2021-12-13" urgency="medium">
1421
<p>Improvements:</p>
1522
<ul>

0 commit comments

Comments
 (0)