Re: stat for FreeBSD

2009-04-10 Thread Felix Zielcke
Am Donnerstag, den 09.04.2009, 20:51 -0700 schrieb Andrey Shuvikov: > > What's involved in creating an account? Just like always only accountname + password + email address See https://savannah.gnu.org/account/register.php -- Felix Zielcke ___ Gru

Re: no commit allowed under discussion

2009-04-10 Thread Bean
On Fri, Apr 10, 2009 at 7:26 AM, Yoshinori K. Okuji wrote: > On Tuesday 07 April 2009 14:25:53 Bean wrote: >> On Tue, Apr 7, 2009 at 8:37 AM, Yoshinori K. Okuji wrote: >> > On Tuesday 07 April 2009 01:43:17 Bean wrote: >> >> On Sat, Apr 4, 2009 at 8:53 PM, Bean wrote: >> >> > On Sat, Apr 4, 2009

Re: UFS fixes

2009-04-10 Thread phcoder
Commited Yoshinori K. Okuji wrote: On Monday 06 April 2009 22:29:58 phcoder wrote: Here are the fixes for UFS. Basically it's a resubmit of my previous patch. It works fine with both solaris UFS and recent BSD UFS2. Does it break anything for anyone with ufs? I don't have UFS, but the patch lo

Re: GRUB2 - Please add support for 64-bit FreeBSD

2009-04-10 Thread Daniel Nebdal
Bean wrote: > Hi, > > Please try the btx loader in /boot/loader, which I believe to be > 32-bit even in amd64 freebsd. The btx loader is an a.out executable, > grurb2 has supported for it already. Ah, just noticed I replied to this before subscribing, so the copy to the list bounced. Let's try aga

Re: [PATCH] Test command

2009-04-10 Thread phcoder
Rediffed. New changelog 2009-04-11 Vladimir Serbinenko Test command * commands/test.c: rewritten to use bash-like test phcoder wrote: Sorry forgot to attach the file phcoder wrote: Hello. Here is an implementation of bash-like "test" command. Many file tests are omitted bec

Re: gettext patch (beta)

2009-04-10 Thread phcoder
Hello, thanks for your work. It's a nice stuff, however it has some minor problems Carles Pina i Estany wrote: -Copy ca.mo to /usr/share/locale/ca/LC_MESSAGES/grub.mo Languages files should go to a subdir of $PREFIX. E.g. to $PREFIX/langs/$LANG.mo linux directories may be inaccessible CALL FO

Re: [PATCH] Support up to 256 SCSI disks on Linux

2009-04-10 Thread phcoder
Robert Millan wrote: On Wed, Mar 04, 2009 at 10:16:29PM +0100, Robert Millan wrote: else if (major == SCSI_DISK0_MAJOR) -sprintf (name, "/dev/sd%c", 'a' + minor / 16); +grub_util_getdiskname_scsi (name, 0, minor / 16); + else if (major == SCSI_DISK1_MAJOR) +grub_util_getdiskname_

Re: [PATCH] framework for building modules externally

2009-04-10 Thread phcoder
Robert Millan wrote: On Wed, Nov 05, 2008 at 07:57:38AM +0100, Christian Franke wrote: Alternative: Export a symbol describing the ABI version in kernel ("grub_abi_3_14"). That requires more bytes than a 32-bit integer. You export grub_abi anyway. _3_14 is 4 bytes instead of 4 but saves. grub

Re: [PATCH] Build system improvement

2009-04-10 Thread phcoder
I don't see any stoppers to merge this patch Javier Martín wrote: This patch modifies several files in the build system (mainly common.rmk and genmk.rb) to reduce the general verbosity of the build process to a manageable, semi-informative level. Thus, what currently appears as "gcc" calls, sever

Re: [PATCH] Long linux kernel command lines

2009-04-10 Thread phcoder
Grüüzzi This part (now named linux16) is kept for backward compatibility only. And it looks like current implementation of linux command doesn't suffer this limitation. Can you confirm? BTW I'm at ETH too Jan Alsenz wrote: Robert Millan wrote: On Tue, Feb 10, 2009 at 07:02:56PM +0100, Jan Als

Re: [PATCH] Faster text rendering by optimizing font glyph lookup

2009-04-10 Thread phcoder
Any reason not to merge this patch? Colin D Bennett wrote: This patch greatly—*tremendously*, even, if higher-numbered Unicode characters are used—speeds up retrieving a glyph for a particular Unicode character. This makes text rendering in general much faster. My text benchmark shows the new t

[PATCH] Preboot support

2009-04-10 Thread phcoder
Hello, here is the preboot hooks support. Apply on top of my bootmove patch. They are very useful for patches like sendkey (my old patch that I'll rediff), badram, acpi (2 patches in separate threads) or drivemap -- Regards Vladimir 'phcoder' Serbinenko diff --git a/ChangeLog b/ChangeLog index

Re: [PATCH]: grub: Fix type of 'actual' size arguments to ieee1275 interfaces.

2009-04-10 Thread David Miller
From: Manoel Rebelo Abranches Date: Thu, 09 Apr 2009 20:00:43 -0300 > This patch is ok. it shouldn't be int. Committed, thanks. ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

[PATCH] Fix target tool check logic

2009-04-10 Thread Pavel Roskin
Hello! I promised this patch long ago, but didn't have a chance to implement and test it. This patch would help users test GRUB using cross-compilers. Many users would prefer to compile native GRUB utilities (grub-mkimage etc) but create the bootloader for another platform. This is cur