Re: booting btrfs

2014-01-13 Thread Michael Chang
2014/1/13 Andrey Borzenkov arvidj...@gmail.com: On Mon, Jan 13, 2014 at 9:05 AM, Michael Chang mch...@suse.com wrote: 2014/1/11 Andrey Borzenkov arvidj...@gmail.com: В Tue, 24 Dec 2013 05:20:19 +0100 Vladimir 'φ-coder/phcoder' Serbinenko phco...@gmail.com пишет: On 24.12.2013 04:43, Chris

Re: [PATCH] Adding Bi-Endian 32-bit and 64-bit Support to the Grub ELF Parser

2014-01-13 Thread Colin Watson
On Fri, Jan 10, 2014 at 11:52:52PM +0400, Andrey Borzenkov wrote: В Fri, 10 Jan 2014 11:58:58 -0600 Tomohiro B Berry tbbe...@us.ibm.com пишет: This patch adds bi-endian support for both 32-bit and 64-bit elf files. It compares the native endianness to the endianness of the elf file, and

Re: booting btrfs

2014-01-13 Thread Andrey Borzenkov
On Mon, Jan 13, 2014 at 1:12 PM, Michael Chang mch...@suse.com wrote: OK. To be more verbose, the question of mine is that I'm uncertain if we don't explicitly install to a partition using blocklists, the /fs/core.img would still automatically get blocklists of itself updated on it's own

Re: Starfield theme font quality

2014-01-13 Thread Chris Jones
On Sun, Jan 12, 2014 at 08:25:48AM EST, Andrey Borzenkov wrote: I was rather shocked when I tried to use starfield theme. Theme itself and menu are very nice but command like and menu editing is near to unusable. See screenshot. Is it some local problem or others see the same? Not sure if

Re: Starfield theme font quality

2014-01-13 Thread Andrey Borzenkov
В Mon, 13 Jan 2014 10:40:44 -0500 Chris Jones cjns1...@gmail.com пишет: On Sun, Jan 12, 2014 at 08:25:48AM EST, Andrey Borzenkov wrote: I was rather shocked when I tried to use starfield theme. Theme itself and menu are very nice but command like and menu editing is near to unusable. See

conflicting types for 'grub_list_push' on MinGW (include loop)

2014-01-13 Thread Andrey Borzenkov
In file included from ./include/grub/dl.h:23:0, from grub-core/lib/libgcrypt-grub/cipher/rfc2268.c:3: ./include/grub/list.h:34:18: warning: conflicting types for 'grub_list_push' [en abled by default] void EXPORT_FUNC(grub_list_push) (grub_list_t *head, grub_list_t item);

Re: conflicting types for 'grub_list_push' on MinGW (include loop)

2014-01-13 Thread Colin Watson
On Mon, Jan 13, 2014 at 10:17:05PM +0400, Andrey Borzenkov wrote: I'm not sure what to do here. list.h needs misc.h apparently only for definition of ATTRIBUTE_ERROR which in turn does not appear to be used anywhere else. This is not fatal so may be can be ignored for now, but still would be

Re: conflicting types for 'grub_list_push' on MinGW (include loop)

2014-01-13 Thread Andrey Borzenkov
В Mon, 13 Jan 2014 18:33:41 + Colin Watson cjwat...@ubuntu.com пишет: On Mon, Jan 13, 2014 at 10:17:05PM +0400, Andrey Borzenkov wrote: I'm not sure what to do here. list.h needs misc.h apparently only for definition of ATTRIBUTE_ERROR which in turn does not appear to be used anywhere

Re: [PATCH] Adding Bi-Endian 32-bit and 64-bit Support to the Grub ELF Parser

2014-01-13 Thread Tomohiro B Berry
Hi Colin, After some testing, it seems that Grub is able to boot the kernel just fine with an initrd with only these changes. The initrd is loaded into memory while still in BE mode and it looks like the jump is handled in the firmware, so the address and size still have to be in big endian

Re: conflicting types for 'grub_list_push' on MinGW (include loop)

2014-01-13 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 13.01.2014 20:44, Andrey Borzenkov wrote: В Mon, 13 Jan 2014 18:33:41 + Colin Watson cjwat...@ubuntu.com пишет: On Mon, Jan 13, 2014 at 10:17:05PM +0400, Andrey Borzenkov wrote: I'm not sure what to do here. list.h needs misc.h apparently only for definition of ATTRIBUTE_ERROR which

Re: conflicting types for 'grub_list_push' on MinGW (include loop)

2014-01-13 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 13.01.2014 19:33, Colin Watson wrote: On Mon, Jan 13, 2014 at 10:17:05PM +0400, Andrey Borzenkov wrote: I'm not sure what to do here. list.h needs misc.h apparently only for definition of ATTRIBUTE_ERROR which in turn does not appear to be used anywhere else. This is not fatal so may be

Re: conflicting types for 'grub_list_push' on MinGW (include loop)

2014-01-13 Thread Andrey Borzenkov
В Mon, 13 Jan 2014 23:00:22 +0100 Vladimir 'φ-coder/phcoder' Serbinenko phco...@gmail.com пишет: On 13.01.2014 19:33, Colin Watson wrote: On Mon, Jan 13, 2014 at 10:17:05PM +0400, Andrey Borzenkov wrote: I'm not sure what to do here. list.h needs misc.h apparently only for definition of

[PATCH] Use _W64 to detect MinGW W64-32 instead of _FILE_OFFSET_BITS

2014-01-13 Thread Andrey Borzenkov
In 94cee4a4c201bb506377b2c26e072eee8cb19d6f I overlooked that config.h unconditionally sets _FILE_OFFSET_BITS, so it cannot be used to detect MinGW W64 environment. It looks like Emacs folks already found solution; instead of _FILE_OFFSET_BITS use _W64 as suggested in

Re: booting btrfs

2014-01-13 Thread Michael Chang
On Mon, Jan 13, 2014 at 05:08:49PM +0400, Andrey Borzenkov wrote: On Mon, Jan 13, 2014 at 1:12 PM, Michael Chang mch...@suse.com wrote: OK. To be more verbose, the question of mine is that I'm uncertain if we don't explicitly install to a partition using blocklists, the /fs/core.img would

Re: [PATCH] Adding Bi-Endian 32-bit and 64-bit Support to the Grub ELF Parser

2014-01-13 Thread Andrey Borzenkov
On Tue, Jan 14, 2014 at 1:29 AM, Tomohiro B Berry tbbe...@us.ibm.com wrote: Hi Colin, After some testing, it seems that Grub is able to boot the kernel just fine with an initrd with only these changes. The initrd is loaded into memory while still in BE mode and it looks like the jump is