summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2023-04-30 22:28:28 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2023-04-30 22:28:28 +0000
commit63d0869888821e0f761642be56f1732b9796cd11 (patch)
tree840f515890e70c80d68f31f0318731291539fd87
parent7e6aa14ab54887dd905d429b48420e30ad4cc6a4 (diff)
Fix typo in MRDISKTYPE.
'rdroot' (size 10,240 blocks) is not the same as 'rdboot' (size 2,048 blocks). Noticed by deraadt@
-rw-r--r--sys/arch/octeon/stand/boot/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/octeon/stand/boot/Makefile b/sys/arch/octeon/stand/boot/Makefile
index 87f316b8ccf..b31eed9e961 100644
--- a/sys/arch/octeon/stand/boot/Makefile
+++ b/sys/arch/octeon/stand/boot/Makefile
@@ -1,11 +1,11 @@
-# $OpenBSD: Makefile,v 1.11 2023/04/28 08:45:26 krw Exp $
+# $OpenBSD: Makefile,v 1.12 2023/04/30 22:28:27 krw Exp $
NOMAN=
#MAN= boot.8
RDBOOT= ${.CURDIR}/../rdboot/obj/rdboot
-MRDISKTYPE= rdroot
+MRDISKTYPE= rdboot
MRMAKEFSARGS= -o disklabel=${MRDISKTYPE},minfree=0,density=1024
.if ${MACHINE} == "octeon"