Date: Tue, 3 Jun 2003 22:55:42 -0700 (PDT) From: Nate Lawson <nate@root.org> To: Poul-Henning Kamp <phk@FreeBSD.org> Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/bsdlabel bsdlabel.c Message-ID: <20030603225225.R24556@root.org> In-Reply-To: <20030604052510.CBA1237B421@hub.freebsd.org> References: <20030604052510.CBA1237B421@hub.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On Tue, 3 Jun 2003, Poul-Henning Kamp wrote: > Modified files: > sbin/bsdlabel bsdlabel.c > Log: > Give ia64 the exact same semantics as i386 with respect to non-512 > byte sector devices. > > Revision Changes Path > 1.98 +2 -1 src/sbin/bsdlabel/bsdlabel.c FYI, this may change behavior relative to 5.1R. > --- src/sbin/bsdlabel/bsdlabel.c:1.97 Tue Jun 3 19:01:05 2003 > +++ src/sbin/bsdlabel/bsdlabel.c Tue Jun 3 22:25:04 2003 > @@ -177,7 +177,8 @@ > bbsize = 8192; > alphacksum = 1; > } else if (!strcmp(optarg, "ia64")) { > - labeloffset = 512; > + labelsoffset = 1; > + labeloffset = 0; > bbsize = 8192; > alphacksum = 0; > } else { >
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030603225225.R24556>