Re: Disable -Werror when error attribute generates warnings

2010-01-02 Thread Vladimir 'φ-coder/phcoder' Serbinenko
=20 With an older version of gcc that does not understand the error =20 attribute, gcc generates warnings when compiling files that include =20 include/grub/list.h. Since TARGET_CFLAGS contains -Werror by default,= =20 the build of modules fails. The following patch checks whether the C

Re: [RFC] Multiboot ammendment: non-VBE video

2010-01-02 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Robert Millan wrote: On Mon, Dec 28, 2009 at 01:07:10PM +0100, Vladimir 'φ-coder/phcoder' Serbinenko wrote: Robert Millan wrote: On Tue, Sep 01, 2009 at 05:37:11PM +0200, Vladimir 'phcoder' Serbinenko wrote: Hello. I'm implementing video part of multiboot

Re: loader/efi/appleloader.c

2010-01-04 Thread Vladimir 'φ-coder/phcoder' Serbinenko
(EfiMemoryMappedIO, 0xffcb4000-0xbfff)/PIWGVolume(2B0585EB-D8B8-49A9-8B8CE21B01AEF2B7) I can add necessary prototypes and structures -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel

Re: loader/efi/appleloader.c

2010-01-04 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Vladimir 'φ-coder/phcoder' Serbinenko wrote: Robert Millan wrote: Hi, I've removed loader/efi/appleloader.c, because it contained blobs of binary data. If someone can provide a satisfactory explanation for them, it can be added back. However, this command seems to be seldom needed

[RFC] Tagged mbi

2010-01-04 Thread Vladimir 'φ-coder/phcoder' Serbinenko
-Drives table -APM table -- Regards Vladimir 'φ-coder/phcoder' Serbinenko === modified file 'include/grub/i386/multiboot.h' --- include/grub/i386/multiboot.h 2009-12-17 23:59:02 + +++ include/grub/i386/multiboot.h 2010-01-02 02:04:52 + @@ -39,4 +39,7 @@ void grub_multiboot_set_bootdev

Re: [RFC] Multiboot ammendment: non-VBE video

2010-01-04 Thread Vladimir 'φ-coder/phcoder' Serbinenko
you think it would be useful to make flag 12 structure describe EGA text too? I attach new diff for multiboot.texi. If it's approved it should be simple to implement in grub2 and example kernel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature

Re: Problems with grub-reboot/savedefault/default=saved

2010-01-05 Thread Vladimir 'φ-coder/phcoder' Serbinenko
we need a better place for grubenv. -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

[BRANCH] Bidi support.

2010-01-06 Thread Vladimir 'φ-coder/phcoder' Serbinenko
for nice gfxmenu theme) (I have only some basics in Hebrew and Arabic so this and subsequent bidi screenshots may contain linguistic mistakes) -- Regards Vladimir 'φ-coder/phcoder' Serbinenko inline: bidi_cropped.png signature.asc Description: OpenPGP digital signature

Re: [RFC] Multiboot ammendment: non-VBE video

2010-01-07 Thread Vladimir 'φ-coder/phcoder' Serbinenko
it. Fixed -- Regards Vladimir 'φ-coder/phcoder' Serbinenko === modified file 'doc/multiboot.texi' --- doc/multiboot.texi 2010-01-01 20:02:24 + +++ doc/multiboot.texi 2010-01-04 19:32:13 + @@ -477,9 +477,7 @@ All of the graphics fields are enabled by flag bit 2. They specify the preferred

Re: [RFC] Tagged mbi

2010-01-07 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Robert Millan wrote: On Mon, Jan 04, 2010 at 10:12:51PM +0100, Vladimir 'φ-coder/phcoder' Serbinenko wrote: Hello. Currently mbi contains a lot of pointers and substructures. It's has various problems like: -Unused fields occupy space if any subsequent fields is used. -Difficult

[PATCH] Manipulate mbi in abstract way

2010-01-10 Thread Vladimir 'φ-coder/phcoder' Serbinenko
It cleans up some mess in grub_multiboot and allows easier code sharing with upcomming tagged mbi -- Regards Vladimir 'φ-coder/phcoder' Serbinenko === added file 'ChangeLog.abstractmbi' --- ChangeLog.abstractmbi 1970-01-01 00:00:00 + +++ ChangeLog.abstractmbi 2010-01-10 16:11:01 +

Re: keyboard layouts

2010-01-13 Thread Vladimir 'φ-coder/phcoder' Serbinenko
___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc

Re: [PATCH] Multiboot video support

2010-01-15 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Vladimir 'phi-coder/phcoder' Serbinenko wrote: Added EGA text support Non-VBE parts reviewed and comitted. Resending VBE parts. -- Regards Vladimir 'φ-coder/phcoder' Serbinenko === added file 'ChangeLog.mbivid' --- ChangeLog.mbivid 1970-01-01 00:00:00 + +++ ChangeLog.mbivid 2010

[PATCH] Add 2 more E820 to ACPI specification

2010-01-15 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Hello. This defines 2 more types for mmap_type in a way to match E820 values. As grub legacy and grub2 both just pass E820 values through it shouldn't be any problem. -- Regards Vladimir 'φ-coder/phcoder' Serbinenko === modified file 'doc/multiboot.texi' --- doc/multiboot.texi 2010-01-12 16:49

Re: [PATCH] switch from sprintf to asprintf and snprintf

2010-01-17 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Colin Watson wrote: On Tue, Dec 29, 2009 at 10:30:12AM +0100, Vladimir 'φ-coder/phcoder' Serbinenko wrote: +char *EXPORT_FUNC(grub_asprintf) (const char *fmt, ...) + __attribute__ ((format (printf, 1, 2))); It's very confusing that you've made grub_asprintf have a dramatically

Re: [PATCH] switch from sprintf to asprintf and snprintf

2010-01-17 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Robert Millan wrote: On Tue, Dec 29, 2009 at 10:30:12AM +0100, Vladimir 'φ-coder/phcoder' Serbinenko wrote: sprintf is potentially dangerous especially with gettext, when messages may be larger than coder would expect. I attach the patch to fix it Could you split the patches

Re: [PATCH] switch from sprintf to asprintf and snprintf

2010-01-17 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Robert Millan wrote: On Fri, Jan 01, 2010 at 09:32:24AM +, Colin Watson wrote: On Tue, Dec 29, 2009 at 10:30:12AM +0100, Vladimir 'φ-coder/phcoder' Serbinenko wrote: +char *EXPORT_FUNC(grub_asprintf) (const char *fmt, ...) + __attribute__ ((format (printf, 1, 2

Re: [PATCH] Proof of concept interrupt wrapping

2010-01-17 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Robert Millan wrote: On Thu, Dec 31, 2009 at 01:28:30PM +0100, Vladimir 'φ-coder/phcoder' Serbinenko wrote: Hello. We were discussing with Robert how to move BIOS interrupt routines out of kernel. There are following possibilities: 1) Have a .lowmem section in every concerned module

Re: keyboard layout patches

2010-01-18 Thread Vladimir 'φ-coder/phcoder' Serbinenko
/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: keyboard layout patches

2010-01-18 Thread Vladimir 'φ-coder/phcoder' Serbinenko
this way Thanks for the other comments, -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: EFI boot problem with MBP 5,4

2010-01-19 Thread Vladimir 'φ-coder/phcoder' Serbinenko
with adjusting bootloader but I want a clean doc on it. This commit vaguely mentions some fields. But I haven't looked into new boot protocol docs -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature

Re: [PATCH] Add 2 more E820 to ACPI specification

2010-01-19 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Robert Millan wrote: On Fri, Jan 15, 2010 at 06:18:43PM +0100, Vladimir 'φ-coder/phcoder' Serbinenko wrote: Hello. This defines 2 more types for mmap_type in a way to match E820 values. As grub legacy and grub2 both just pass E820 values through it shouldn't be any problem. Note

Re: [PATCH] gfxmenu relative path in file component of images

2010-01-20 Thread Vladimir 'φ-coder/phcoder' Serbinenko
___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org

[multiboot2] Tagged multiboot2 header

2010-01-20 Thread Vladimir 'φ-coder/phcoder' Serbinenko
are fixed so if you want to specify a field at offset 128 but none of fields at lower offset you still have to reserve 132 bytes. Possible solution is to use tags. Ammendment proposal attached -- Regards Vladimir 'φ-coder/phcoder' Serbinenko === modified file 'doc/multiboot.texi' --- doc

Re: grub-mkfont and DejaVu font problems

2010-01-21 Thread Vladimir 'φ-coder/phcoder' Serbinenko
the problem with DejaVu family might be? Bug in grub-mkfont is fixed in latest trunk Best regards, Evgeny. ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder

Re: grub payload fails on coreboot

2010-01-22 Thread Vladimir 'φ-coder/phcoder' Serbinenko
-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman

Re: [PATCH] nested partitions

2010-01-22 Thread Vladimir 'φ-coder/phcoder' Serbinenko
the first one is already implemented, but your approach makes it less ad-hoc and splits code off part_msdos.mod, which is an improvement. -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature

Re: [PATCH] Multiboot video support

2010-01-24 Thread Vladimir 'φ-coder/phcoder' Serbinenko
need to draw aline of what we want and what we don't want to pass, otherwise, we may end up passing font, background images and even logos. -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub

Re: Antialiased fonts patch.

2010-01-26 Thread Vladimir 'φ-coder/phcoder' Serbinenko
. ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing

Re: macrofy fontcontants

2010-01-26 Thread Vladimir 'φ-coder/phcoder' Serbinenko
part, you can merge your patch ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature

Re: Antialiased fonts patch.

2010-01-26 Thread Vladimir 'φ-coder/phcoder' Serbinenko
. ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature

Re: [PATCH] support for xz compression format

2010-01-26 Thread Vladimir 'φ-coder/phcoder' Serbinenko
:-) ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature

[PATCH] Fix a special case when accessing partition on linux

2010-01-31 Thread Vladimir 'φ-coder/phcoder' Serbinenko
such workarounds for free systems. -- Regards Vladimir 'φ-coder/phcoder' Serbinenko === modified file 'util/hostdisk.c' --- util/hostdisk.c 2010-01-25 17:04:22 + +++ util/hostdisk.c 2010-01-31 11:52:27 + @@ -336,7 +336,8 @@ char dev[PATH_MAX]; strcpy (dev, map[disk-id].device

Re: Build GRUB for UEFI (not EFI), 64 bit

2010-02-01 Thread Vladimir 'φ-coder/phcoder' Serbinenko
-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: Build GRUB for UEFI (not EFI), 64 bit

2010-02-01 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org

Re: Build GRUB for UEFI (not EFI), 64 bit

2010-02-01 Thread Vladimir 'φ-coder/phcoder' Serbinenko
___ Grub-devel mailing list Grub-devel@gnu.org mailto:Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko -- Regards Vladimir 'φ-coder/phcoder

Re: [multiboot2] Tagged multiboot2 header

2010-02-01 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Robert Millan wrote: On Thu, Jan 21, 2010 at 12:49:55AM +0100, Vladimir 'φ-coder/phcoder' Serbinenko wrote: +...@node Header tags +...@subsection General tag structure +Tags constitutes a buffer of structures immediately following each other. +Every structure has following format

Re: GRUB 2 for DEC Alpha?

2010-02-04 Thread Vladimir 'φ-coder/phcoder' Serbinenko
-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: [PATCH] a new filessytem module for nilfs2

2010-02-05 Thread Vladimir 'φ-coder/phcoder' Serbinenko
/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: Search GPT partition in GRUB

2010-02-05 Thread Vladimir 'φ-coder/phcoder' Serbinenko
config, external factors and so on) Cheers, -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: beep support?

2010-02-05 Thread Vladimir 'φ-coder/phcoder' Serbinenko
___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel

Re: beep support?

2010-02-05 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Samuel Thibault wrote: Vladimir 'φ-coder/phcoder' Serbinenko, le Fri 05 Feb 2010 17:52:02 +0100, a écrit : Could you detail at which events beep should be produced and propose a patch to add appropriate hooks? A beep just when the menu is first drawn is already a good thing

Re: beep support?

2010-02-05 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Samuel Thibault wrote: Vladimir 'φ-coder/phcoder' Serbinenko, le Fri 05 Feb 2010 17:52:02 +0100, a écrit : Could you detail at which events beep should be produced and propose a patch to add appropriate hooks? A beep just when the menu is first drawn is already a good thing

Re: [PATCH] Search hinting support

2010-02-06 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Robert Millan wrote: On Mon, Dec 28, 2009 at 02:04:18PM +0100, Vladimir 'φ-coder/phcoder' Serbinenko wrote: - NAME [VARIABLE], + NAME [VARIABLE] [HINTS], I think this can be done without an additional interface: root variable already

[RFT] [PATCH] Use call-method and not interpret for cursor-on/cursor-off

2010-02-08 Thread Vladimir 'φ-coder/phcoder' Serbinenko
This should make cursor-on/-off cleaner -- Regards Vladimir 'φ-coder/phcoder' Serbinenko === modified file 'term/ieee1275/ofconsole.c' --- term/ieee1275/ofconsole.c 2010-01-22 19:42:02 + +++ term/ieee1275/ofconsole.c 2010-02-08 11:06:56 + @@ -322,10 +322,26 @@ grub_ofconsole_setcursor

Re: [PATCH] a new filessytem module for nilfs2

2010-02-09 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: Simplified Chinese screenshots

2010-02-10 Thread Vladimir 'φ-coder/phcoder' Serbinenko
'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: Antialiased fonts patch.

2010-02-10 Thread Vladimir 'φ-coder/phcoder' Serbinenko
= 3 and GRUB_FONT_8_BIT would be the first flag. This allows further expandability by orthogonality. I started reviewing your patch but it turned out that it's a patch bewtween some kind of your local versions. Could you send a patch against trunk? -- Regards Vladimir 'φ-coder/phcoder' Serbinenko

Re: Multiboot's boot_device field specification + implementation bug

2010-02-10 Thread Vladimir 'φ-coder/phcoder' Serbinenko
-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http

Re: [patch] GRUB possible patches

2010-02-11 Thread Vladimir 'φ-coder/phcoder' Serbinenko
___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature

Re: [RFC] Framebuffer rotation patch

2010-02-11 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Michal Suchanek wrote: 2010/2/11 Vladimir 'φ-coder/phcoder' Serbinenko phco...@gmail.com: Michal Suchanek wrote: Hello Sending a preliminary framebuffer rotation patch. You can use videotest to see 4 tiles rotated from the same bitmap data. +char leaf_data[] = { 0x00

Re: Antialiased fonts patch.

2010-02-12 Thread Vladimir 'φ-coder/phcoder' Serbinenko
, vowel marks and Indic scripts -- Bruce ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature

Re: Antialiased fonts patch.

2010-02-12 Thread Vladimir 'φ-coder/phcoder' Serbinenko
and feature bitfield -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: What's the point of allocating the protected mode code on 0x100000 only (UEFI)

2010-02-16 Thread Vladimir 'φ-coder/phcoder' Serbinenko
___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature

Re: [PATCH] Trim a few bytes from boot.img

2010-02-16 Thread Vladimir 'φ-coder/phcoder' Serbinenko
(read_error_string) - + movw$read_error_string, %si +LOCAL(error_message): + callLOCAL(message) LOCAL(general_error): MSG(general_error_string) Thanks, -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature

Contributing patches (Re: freeze announcement)

2010-02-16 Thread Vladimir 'φ-coder/phcoder' Serbinenko
___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature

Re: [patch] GRUB possible patches

2010-02-16 Thread Vladimir 'φ-coder/phcoder' Serbinenko
at openSubscriber.com http://www.opensubscriber.com/message/grub-devel@gnu.org/13415591.html ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko

Re: [RFC] Framebuffer rotation patch

2010-02-16 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Michal Suchanek wrote: 2010/2/11 Vladimir 'φ-coder/phcoder' Serbinenko phco...@gmail.com: Michal Suchanek wrote: 2010/2/11 Vladimir 'φ-coder/phcoder' Serbinenko phco...@gmail.com: Michal Suchanek wrote: Hello Sending a preliminary framebuffer rotation patch

Re: [RFC] Framebuffer rotation patch, or why 'unsigned' fails us

2010-02-16 Thread Vladimir 'φ-coder/phcoder' Serbinenko
-- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: avoid possible overflow?

2010-02-16 Thread Vladimir 'φ-coder/phcoder' Serbinenko
@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub

Re: beep support?

2010-02-16 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Samuel Thibault wrote: Samuel Thibault, le Fri 05 Feb 2010 19:11:18 +0100, a écrit : Vladimir 'φ-coder/phcoder' Serbinenko, le Fri 05 Feb 2010 17:52:02 +0100, a écrit : Could you detail at which events beep should be produced and propose a patch to add appropriate hooks

Re: [PATCH] transparent file reader

2010-02-16 Thread Vladimir 'φ-coder/phcoder' Serbinenko
it? ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list

Re: [PATCH][UPDATED] support for xz compression format

2010-02-16 Thread Vladimir 'φ-coder/phcoder' Serbinenko
) in a slightly different way but I think this solution should cover most if not all cases. Specialised loaders may use guestimated compressed ratio, when it's overflown (unlikely if estimation method is good), save overflow separately by blocks and concatenate when done -- Regards Vladimir 'φ-coder

Re: how to get started with developing grub2

2010-02-17 Thread Vladimir 'φ-coder/phcoder' Serbinenko
___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list

Re: [patch] scrolling bug

2010-02-20 Thread Vladimir 'φ-coder/phcoder' Serbinenko
___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list

Re: Lead-up message 'Welcome to GRUB!' inverted text printed lowlevel via BIOS ?!?

2010-02-20 Thread Vladimir 'φ-coder/phcoder' Serbinenko
://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: [PATCHv2] a new filesystem module for nilfs2

2010-02-20 Thread Vladimir 'φ-coder/phcoder' Serbinenko
-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: [RFC,resend] framebuffer rotation patch

2010-02-20 Thread Vladimir 'φ-coder/phcoder' Serbinenko
in fbtrant.h Thanks Michal ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko

Re: (no subject)

2010-02-20 Thread Vladimir 'φ-coder/phcoder' Serbinenko
this? partitions: /dev/sda1 /boot 100mb /dev/sda2 /swap 8gb /dev/sda3 / 300gb /dev/sda4 /srv 4tb thx, alex -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub

Re: [patch] search for partition using GPT GUID

2010-02-20 Thread Vladimir 'φ-coder/phcoder' Serbinenko
...@gmail.com at openSubscriber.com http://www.opensubscriber.com/message/grub-devel@gnu.org/13421616.html ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder

Re: [patch] GRUB possible patches

2010-02-20 Thread Vladimir 'φ-coder/phcoder' Serbinenko
, I will create new patch soon -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: Bug#570960: grub-pc: grub2 not working on lenny and squeeze after fresh install

2010-02-22 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: Lead-up message 'Welcome to GRUB!' inverted text printed lowlevel via BIOS ?!?

2010-02-22 Thread Vladimir 'φ-coder/phcoder' Serbinenko
for, Robo ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko

Re: Warning messages

2010-02-23 Thread Vladimir 'φ-coder/phcoder' Serbinenko
___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org

Re: ~3TB ext4 volume not read correctly by ext2-fs driver in GRUB2

2010-02-24 Thread Vladimir 'φ-coder/phcoder' Serbinenko
. Regards, Tony V. ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko

Re: [PATCHv2] a new filesystem module for nilfs2

2010-02-24 Thread Vladimir 'φ-coder/phcoder' Serbinenko
. */ ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital

Re: [PATCH] locate the qemu binary in the grub-shell test

2010-02-25 Thread Vladimir 'φ-coder/phcoder' Serbinenko
} ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature

Re: Xen on debian 5.0

2010-02-26 Thread Vladimir 'φ-coder/phcoder' Serbinenko
mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

New maintainer. 1.98 release.

2010-03-01 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Hello, all. First of all I would like to announce that I was appointed as a co-maintainer of GRUB. I will release 1.98 in 24 hours. Feel free to update NEWS before then -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature

Re: New maintainer. 1.98 release.

2010-03-01 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Regards, Nando 2010/3/2 Vladimir 'φ-coder/phcoder' Serbinenko phco...@gmail.com mailto:phco...@gmail.com Hello, all. First of all I would like to announce that I was appointed as a co-maintainer of GRUB. I will release 1.98 in 24 hours. Feel free to update NEWS before

Re: [PATCH] Add missing dependencies to INSTALL

2010-03-04 Thread Vladimir 'φ-coder/phcoder' Serbinenko
this configuration. In future it may change if someone fixes those problems If it's a requirement it could be just optional, but I would leave as a requirement since I understand that gettext is mainly everywhere. -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description

GRUB 1.98 released.

2010-03-06 Thread Vladimir 'φ-coder/phcoder' Serbinenko
as we enjoyed developing it. -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: How can I use grub_getcrc32 in fs module

2010-03-10 Thread Vladimir 'φ-coder/phcoder' Serbinenko
programs if I want to use crc calculation in fs module? thank you very much in advance -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http

Re: Problems compiling/running Grub 1.97.2 on Mac OS X 10.6.2 on intel MacBook Pro

2010-03-10 Thread Vladimir 'φ-coder/phcoder' Serbinenko
-- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: Scripts to compile grub2

2010-03-11 Thread Vladimir 'φ-coder/phcoder' Serbinenko
-- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: How can I use grub_getcrc32 in fs module

2010-03-14 Thread Vladimir 'φ-coder/phcoder' Serbinenko
in grub_setup_SOURCES, but got same result. Stupid question: have you rerun ./autogen.sh ? Yes, I did. I should have mentioned. What I did is sh autogen.sh make clean;./configure;make May I have a look at this part of the patch? -- Regards Vladimir 'φ-coder/phcoder

Re: [PATCH] fix “UUID” generation in gr ub-mkrescue

2010-03-14 Thread Vladimir 'φ-coder/phcoder' Serbinenko
) hereby. bye, //mirabilos - ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital

Re: [patch] Bugs in the multiboot example kernel implementation

2010-03-14 Thread Vladimir 'φ-coder/phcoder' Serbinenko
just fixed it properly in bazaar. Thanks for reporting -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub

Re: [PATCH] transparent file reader

2010-03-14 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Szymon Janc wrote: Dnia wtorek 16 luty 2010 o 19:16:19 Vladimir 'φ-coder/phcoder' Serbinenko napisał(a): I like the patch however few comments: 1) How are filters ordered? 2) How would I selectively disable a filter. E.g. for hexdump or when payload expects compressed data

Re: How can I use grub_getcrc32 in fs module

2010-03-15 Thread Vladimir 'φ-coder/phcoder' Serbinenko
--- grub_setup_SOURCES is in i386-pc.rmk and sparc64-ieee1275.rmk -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: [PATCH] Font antialiasing v2

2010-03-17 Thread Vladimir 'φ-coder/phcoder' Serbinenko
concerns but I'll process the pile once I have time ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital

Re: Broken build

2010-03-26 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Bruce Dubbs wrote: Vladimir 'φ-coder/phcoder' Serbinenko wrote: Carles Pina i Estany wrote: Hi, On Mar/17/2010, Bruce Dubbs wrote: With the addition of the internationalization code, building GRUB in a separate directory fails. I'll take a look into it soon (next days or next week

Re: Minix subpartition support.

2010-03-26 Thread Vladimir 'φ-coder/phcoder' Serbinenko
/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: User input in grub2 module

2010-03-26 Thread Vladimir 'φ-coder/phcoder' Serbinenko
, grub_cmdline_get Thanks in advance, venom00 ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature

Re: [PATCH] A testcase for blank lines in grub script (debian bug #572302)

2010-03-26 Thread Vladimir 'φ-coder/phcoder' Serbinenko
://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: [BUG][PATCH] Bug fix and a test case for the last semicolon behavior in grub-script

2010-03-26 Thread Vladimir 'φ-coder/phcoder' Serbinenko
___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP

Re: GRUB2 and software RAID1 = insmod linux

2010-03-26 Thread Vladimir 'φ-coder/phcoder' Serbinenko
step will be to write a small GRUB2-RAID howto nicely fited for GRUB2's wiki. Because hey, sparse documentation :-) ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder

Re: gettext util

2010-03-26 Thread Vladimir 'φ-coder/phcoder' Serbinenko
discussion. Thanks, ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel -- Regards Vladimir 'φ-coder/phcoder' Serbinenko

Switching multiboot2 to tagged

2010-03-28 Thread Vladimir 'φ-coder/phcoder' Serbinenko
ones. In short all ammendment ideas are welcome. -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

Re: gettext util

2010-03-28 Thread Vladimir 'φ-coder/phcoder' Serbinenko
sentences for all messsages. ) Cheers, -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel

<    1   2   3   4   5   6   7   8   9   10   >