diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2022-11-14 14:04:26 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2022-11-14 14:04:26 +0000 |
commit | ac9244927d949ad1484bc24f3555d0113c42d544 (patch) | |
tree | 947e86a3b407ab0c71c3a9c285867c4ce06f292b /distrib/amd64 | |
parent | 7ddbc8dc5752147826c8e8ea4d40b2408f79a392 (diff) |
make the EFI partition quite large, like on arm64 x13s, because newer x86
((Lenovo in particular) firmware updating methods do the same -- placing
a payload in there, so a small space won't do.
ok kettenis
Diffstat (limited to 'distrib/amd64')
-rw-r--r-- | distrib/amd64/common/install.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/amd64/common/install.md b/distrib/amd64/common/install.md index d05dbb1a1cc..877edb2607d 100644 --- a/distrib/amd64/common/install.md +++ b/distrib/amd64/common/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.56 2021/09/26 12:39:25 krw Exp $ +# $OpenBSD: install.md,v 1.57 2022/11/14 14:04:25 deraadt Exp $ # # Copyright (c) 1996 The NetBSD Foundation, Inc. # All rights reserved. @@ -81,7 +81,7 @@ md_prep_fdisk() { fi echo -n "Setting OpenBSD GPT partition to whole $_disk..." - fdisk -gy -b 960 $_disk >/dev/null + fdisk -gy -b 532480 $_disk >/dev/null echo "done." return ;; [eE]*) @@ -91,7 +91,7 @@ md_prep_fdisk() { You will now create two GPT partitions. The first must have an id of 'EF' and be large enough to contain the OpenBSD boot programs, -at least 960 blocks. The second must have an id of 'A6' and will +at least 532480 blocks. The second must have an id of 'A6' and will contain your OpenBSD data. Neither may overlap other partitions. Inside the fdisk command, the 'manual' command describes the fdisk commands in detail. |