diff options
author | Klemens Nanni <kn@cvs.openbsd.org> | 2022-09-06 20:54:38 +0000 |
---|---|---|
committer | Klemens Nanni <kn@cvs.openbsd.org> | 2022-09-06 20:54:38 +0000 |
commit | 35face4487531aa1425ffe1b29e9162d44aa0bbf (patch) | |
tree | 9d1baac211ba57de686ec837273bc4bd929e2179 /regress | |
parent | dad8877672b22a17d7a56bcc6373bb3154778887 (diff) |
Crank (sparse) disk size from 64M to 128M to make arm64 happy again
Diffstat (limited to 'regress')
-rw-r--r-- | regress/usr.sbin/installboot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.sbin/installboot/Makefile b/regress/usr.sbin/installboot/Makefile index 2eef7ddddaf..5617bcc87c7 100644 --- a/regress/usr.sbin/installboot/Makefile +++ b/regress/usr.sbin/installboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.23 2022/09/06 20:30:00 kn Exp $ +# $OpenBSD: Makefile,v 1.24 2022/09/06 20:54:37 kn Exp $ INSTALLBOOT ?= /usr/sbin/installboot DRY_RUN = ${INSTALLBOOT} -n @@ -64,7 +64,7 @@ REGRESS_SETUP_ONCE = copy-bootstrap-to-root create-disks: .for n in ${NDISKS} - dd if=/dev/zero of=disk${n}.img bs=1m count=0 seek=64 status=none + dd if=/dev/zero of=disk${n}.img bs=1m count=0 seek=128 status=none ${SUDO} vnconfig -- disk${n}.img 1>diskdev${n}.txt .endfor .if ${USE_SOFTRAID:L} == "yes" |