From c9192519e48e08530e6cdf1e121776f5f88e21df Mon Sep 17 00:00:00 2001 From: Marcel Moolenaar Date: Wed, 4 Jun 2003 02:01:05 +0000 Subject: [PATCH] Unbreak ia64. 'nuff said. --- sbin/bsdlabel/bsdlabel.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sbin/bsdlabel/bsdlabel.c b/sbin/bsdlabel/bsdlabel.c index 56b5176dc33c..97e5e3218489 100644 --- a/sbin/bsdlabel/bsdlabel.c +++ b/sbin/bsdlabel/bsdlabel.c @@ -176,6 +176,10 @@ main(int argc, char *argv[]) labeloffset = 64; bbsize = 8192; alphacksum = 1; + } else if (!strcmp(optarg, "ia64")) { + labeloffset = 512; + bbsize = 8192; + alphacksum = 0; } else { errx(1, "Unsupported architecture"); }