diff options
author | phk <phk@FreeBSD.org> | 2003-06-04 05:25:04 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-06-04 05:25:04 +0000 |
commit | 56091404e85973cb405b9e03d2157364e96a4e0c (patch) | |
tree | 252d4a68ef44521e0d2586f5ba2bbefbae4141b1 /sbin | |
parent | 1593ff46cb41e2d07a63f0896e5e8aedb24f74d8 (diff) | |
download | FreeBSD-src-56091404e85973cb405b9e03d2157364e96a4e0c.zip FreeBSD-src-56091404e85973cb405b9e03d2157364e96a4e0c.tar.gz |
Give ia64 the exact same semantics as i386 with respect to non-512
byte sector devices.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/bsdlabel/bsdlabel.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/bsdlabel/bsdlabel.c b/sbin/bsdlabel/bsdlabel.c index 97e5e32..34ccc88 100644 --- a/sbin/bsdlabel/bsdlabel.c +++ b/sbin/bsdlabel/bsdlabel.c @@ -177,7 +177,8 @@ main(int argc, char *argv[]) bbsize = 8192; alphacksum = 1; } else if (!strcmp(optarg, "ia64")) { - labeloffset = 512; + labelsoffset = 1; + labeloffset = 0; bbsize = 8192; alphacksum = 0; } else { |