Re: PC partitions and big disks

2007-11-10 Thread Marco Gerards
Robert Millan <[EMAIL PROTECTED]> writes: > On Fri, Nov 09, 2007 at 04:33:47PM +0100, Marco Gerards wrote: >> Robert Millan <[EMAIL PROTECTED]> writes: >> >> > This should make the error much clearer when partition exceeds 2 TiB on a >> > PC >> > partition map (currently, all user gets is a "out

Re: PC partitions and big disks

2007-11-09 Thread Robert Millan
On Fri, Nov 09, 2007 at 04:33:47PM +0100, Marco Gerards wrote: > Robert Millan <[EMAIL PROTECTED]> writes: > > > This should make the error much clearer when partition exceeds 2 TiB on a PC > > partition map (currently, all user gets is a "out of partition" error which > > is hard to figure out if

Re: PC partitions and big disks

2007-11-09 Thread Marco Gerards
Robert Millan <[EMAIL PROTECTED]> writes: > This should make the error much clearer when partition exceeds 2 TiB on a PC > partition map (currently, all user gets is a "out of partition" error which > is hard to figure out if you're unaware of the 2 TiB limit). > > Comments? See below :-) > --

Re: PC partitions and big disks

2007-11-05 Thread Robert Millan
On Mon, Nov 05, 2007 at 04:17:50PM +0100, Robert Millan wrote: > > void > +grub_util_warn (const char *fmt, ...) > +{ > + va_list ap; > + > + fprintf (stderr, "%s: warning: ", progname); > + va_start (ap, fmt); > + vfprintf (stderr, fmt, ap); > + va_end (ap); > + fputc ('\n', stderr)