Re: [PATCH] probe command

2009-06-10 Thread Vladimir 'phcoder' Serbinenko
On Tue, Jun 9, 2009 at 11:48 PM, Pavel Roskin wrote: > On Tue, 2009-06-09 at 22:55 +0200, Vladimir 'phcoder' Serbinenko wrote: > >> > --target=partmap doesn't work on whole disks. >> It was the intent. I'm norking on nested partitions and consider the >> following situation: >> hd0 is subdivided by

Re: [PATCH] hfs+ uuid

2009-06-10 Thread Vladimir 'phcoder' Serbinenko
On Tue, Jun 9, 2009 at 12:01 AM, Pavel Roskin wrote: > On Mon, 2009-06-08 at 22:50 +0200, Vladimir 'phcoder' Serbinenko wrote: > >> Here is the improved patch. I deliberately ignored md5 comments >> because this part will be gone anyway whel Michael Gorven signs his >> copyright assignment and we i

Bean - Once again, thanks!

2009-06-10 Thread Chip Panarchy
Hello Many of you may not of known this, but Bean has written a patch for GRUB2 which enables support for FreeBSD 64-bit. Once again, excellent work Bean, thanks. Also honorary thanks goes to phcoder, for adding trampoline and other needed compatibility-type objects. I'll be leaving this list n

[PATCH] more scripting fixes

2009-06-10 Thread Vladimir 'phcoder' Serbinenko
Hello. I discovered that the lines like echo \"hello\" and echo "a b" weren't parsed correctly. Here is a fix. I have tested it throughly yet -- Regards Vladimir 'phcoder' Serbinenko diff --git a/ChangeLog b/ChangeLog index 3eb4bfd..4b3bf75 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@

Re: 2273 lines in 170 files consists of only space and tabulators

2009-06-10 Thread Felix Zielcke
Am Samstag, den 06.06.2009, 21:53 -0400 schrieb Pavel Roskin: > On Sat, 2009-06-06 at 12:25 +0200, Felix Zielcke wrote: > > f...@fz:~/grub/grub2.git$ rgrep -E "^[[:blank:]]+$" *|wc -l > > 2273 > > f...@fz:~/grub/grub2.git$ rgrep -E "^[[:blank:]]+$" *|sed -e > > 's/:.*//'|uniq|wc -l > > 170 > > >

Re: [PATCH] Re: grub-install --root-directory=/mnt /dev/sda1 fails

2009-06-10 Thread Felix Zielcke
Am Dienstag, den 09.06.2009, 23:51 +0200 schrieb Vladimir 'phcoder' Serbinenko: > + > +char *grub_make_system_path_relative_to_its_root (char *path) > +{ > + > + struct stat st; > + char buf[500], buf2[500]; > Use malloc instead of static allocation Changed. > + p = strrchr (buf, '/'); >