Re: grub-2.02~beta1 happened

2013-12-18 Thread Andrey Borzenkov
On Thu, Dec 19, 2013 at 5:51 AM, Vladimir 'φ-coder/phcoder' Serbinenko wrote: > Hello, all. I've just uploaded 2.02~beta1. This also means that we're > now in freeze. I'm willing to consider exceptions on case-by-case basis > but it would be exceptions. You did not answer my question whether I sh

Re: grub-2.02~beta1 happened

2013-12-18 Thread Bruce Dubbs
Vladimir 'φ-coder/phcoder' Serbinenko wrote: Hello, all. I've just uploaded 2.02~beta1. This also means that we're now in freeze. I'm willing to consider exceptions on case-by-case basis but it would be exceptions. The major points to do before release: - ARM64 loader. - Yeeloong 3A support needs

grub-2.02~beta1 happened

2013-12-18 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Hello, all. I've just uploaded 2.02~beta1. This also means that we're now in freeze. I'm willing to consider exceptions on case-by-case basis but it would be exceptions. The major points to do before release: - ARM64 loader. - Yeeloong 3A support needs some love. - XEN would probably need config ad

[PATCH 1/1] sparc64 - second stage sector corruption

2013-12-18 Thread Allen Pais
Correct the end of the bootpath property. The OBP property "bootpath" call was clearing kernel_byte which is the second stage boot sector. The property value for boot_path is also limited in size. It should be larger in size. Signed-off-by: Bob Picco Signed-off-by: Allen Pais --- grub-core/boo

Re: [Xen-devel] pvgrub2 is merged

2013-12-18 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 18.12.2013 20:39, Stefano Stabellini wrote: > On Wed, 18 Dec 2013, Vladimir 'φ-coder/phcoder' Serbinenko wrote: >> On 17.12.2013 15:35, Fabio Fantoni wrote: >>> Il 17/12/2013 15:10, Fabio Fantoni ha scritto: Il 17/12/2013 15:08, Vladimir 'φ-coder/phcoder' Serbinenko ha scritto: >> Thank

Re: [Xen-devel] pvgrub2 is merged

2013-12-18 Thread Stefano Stabellini
On Wed, 18 Dec 2013, Vladimir 'φ-coder/phcoder' Serbinenko wrote: > On 17.12.2013 15:35, Fabio Fantoni wrote: > > Il 17/12/2013 15:10, Fabio Fantoni ha scritto: > >> Il 17/12/2013 15:08, Vladimir 'φ-coder/phcoder' Serbinenko ha scritto: > Thanks. > Now there is another error, probably int

Re: [PATCH] fix timeout handling with GRUB_HIDDEN_TIMEOUT=0

2013-12-18 Thread Vladimir 'φ-coder/phcoder' Serbinenko
@Colin: can you review this? On 18.12.2013 18:22, Andrey Borzenkov wrote: > Ping? This fixes actual problem - default /etc/default/grub shipped on > openSUSE included GRUB_HIDDEN_TIMEOUT=0 which means timeout gets > disabled after update. > > Colin, I Cc you as author of original patch - what do y

Re: [PATCH] add arm64 UEFI Linux loader

2013-12-18 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 18.12.2013 17:54, Leif Lindholm wrote: > On Mon, Dec 16, 2013 at 10:34:51PM +0100, Vladimir 'φ-coder/phcoder' > Serbinenko wrote: >>> +static void >>> +get_fdt (void) >>> +{ >>> + grub_efi_configuration_table_t *tables; >>> + unsigned int i; >>> + int fdt_loaded; >>> + int size; >>> + >>> +

Re: [PATCH] fix timeout handling with GRUB_HIDDEN_TIMEOUT=0

2013-12-18 Thread Andrey Borzenkov
Ping? This fixes actual problem - default /etc/default/grub shipped on openSUSE included GRUB_HIDDEN_TIMEOUT=0 which means timeout gets disabled after update. Colin, I Cc you as author of original patch - what do you think? В Sat, 7 Dec 2013 21:24:19 +0400 Andrey Borzenkov пишет: > Before 44d

Re: [PATCH] add arm64 UEFI Linux loader

2013-12-18 Thread Andrey Borzenkov
В Wed, 18 Dec 2013 17:54:39 +0100 Leif Lindholm пишет: > > > > + if (!loaded) > > > +{ > > > + grub_error (GRUB_ERR_BAD_ARGUMENT, > > > + N_("you need to load the kernel first")); > > > + goto fail; > > > +} > > > + > > > + files = grub_zalloc (argc * sizeof (files[

Re: [PATCH] add arm64 UEFI Linux loader

2013-12-18 Thread Leif Lindholm
On Mon, Dec 16, 2013 at 10:34:51PM +0100, Vladimir 'φ-coder/phcoder' Serbinenko wrote: > > +static void > > +get_fdt (void) > > +{ > > + grub_efi_configuration_table_t *tables; > > + unsigned int i; > > + int fdt_loaded; > > + int size; > > + > > + if (!orig_fdt) > > +{ > > + fdt_loa

Re: [PATCH] add fdt prerequisites for arm64 UEFI Linux loader

2013-12-18 Thread Leif Lindholm
On Mon, Dec 16, 2013 at 10:17:12PM +0100, Vladimir 'φ-coder/phcoder' Serbinenko wrote: > > + et->empty_node.node_end = grub_cpu_to_be32 (FDT_END); > > + et->empty_node.prop_end = grub_cpu_to_be32 (FDT_END_NODE); > > grub_cpu_to_be32_compile_time is better suited. Ok, will change. > > +#define

Re: [PATCH] add fdt prerequisites for arm64 UEFI Linux loader

2013-12-18 Thread Leif Lindholm
On Tue, Dec 17, 2013 at 10:27:12AM +0100, Francesco Lavra wrote: > > + grub_fdt_set_off_dt_strings (fdt, sizeof (*et)); > > + grub_fdt_set_off_dt_struct (fdt, sizeof (grub_fdt_header_t) + 16); > > I would write the offset as sizeof (et->header) + sizeof (et->empty_rsvmap) True. Will change. >

Re: [Xen-devel] pvgrub2 is merged

2013-12-18 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 17.12.2013 15:35, Fabio Fantoni wrote: > Il 17/12/2013 15:10, Fabio Fantoni ha scritto: >> Il 17/12/2013 15:08, Vladimir 'φ-coder/phcoder' Serbinenko ha scritto: Thanks. Now there is another error, probably introduced by xenfb support: >>> doesn't look like related to xenfb. Is it