* grub 1.93
@ 2006-03-31 4:52 Sergey Ya. Korshunoff
2006-03-31 9:25 ` Marco Gerards
2006-04-01 17:17 ` Vesa Jääskeläinen
0 siblings, 2 replies; 6+ messages in thread
From: Sergey Ya. Korshunoff @ 2006-03-31 4:52 UTC (permalink / raw)
To: grub-devel
Hello grub-devel,
1) current version of GRUB2 (1.93 from CVS) reports about pointer misaligment and hangs
(no any text menu posiible). Any plans to fix this? (I use x86 hardware).
Yes, it is because of grub.cfg from 1.92 (old menu stile).
While there is no support for this style in current GRUB2?
Read all non empty lines after this command and execute them.
Is is hard to implement?
2) cursor keys do not work in menu (can not move selection bar). But
keys work in edit menu mode.
Is there plans to add ^N ^P ^A ^D (or some other like this) as navigation keys?
3) long menu lines (linux .......................... with parameters)
are truncated (but it is possible to add more chars in edit mode)
4) default 1
This command do not select right menu item as in 1.92 (always 0)
--
Best regards,
Sergey
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: grub 1.93
2006-03-31 4:52 grub 1.93 Sergey Ya. Korshunoff
@ 2006-03-31 9:25 ` Marco Gerards
2006-04-01 17:17 ` Vesa Jääskeläinen
1 sibling, 0 replies; 6+ messages in thread
From: Marco Gerards @ 2006-03-31 9:25 UTC (permalink / raw)
To: The development of GRUB 2
"Sergey Ya. Korshunoff" <seyko@opanki.ru> writes:
Hi,
> 1) current version of GRUB2 (1.93 from CVS) reports about pointer misaligment and hangs
> (no any text menu posiible). Any plans to fix this? (I use x86 hardware).
>
> Yes, it is because of grub.cfg from 1.92 (old menu stile).
> While there is no support for this style in current GRUB2?
> Read all non empty lines after this command and execute them.
> Is is hard to implement?
The syntax changed.
> 2) cursor keys do not work in menu (can not move selection bar). But
> keys work in edit menu mode.
Weird. Is this on the PC? Does GRUB Legacy work?
> Is there plans to add ^N ^P ^A ^D (or some other like this) as navigation keys?
There are some navigation keys, but I can not remember which they are.
> 3) long menu lines (linux .......................... with parameters)
> are truncated (but it is possible to add more chars in edit mode)
Oh, I will have a look at this. IIRC the limit is 255 characters.
> 4) default 1
> This command do not select right menu item as in 1.92 (always 0)
Hm, I will look into this.
As you noticed the syntax changes might have broken some things. I
will have a look at all of this after my exams (I hope...). Please
tell me the things that don't work correctly so I can fix those
issues.
--
Marco
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: grub 1.93
2006-03-31 4:52 grub 1.93 Sergey Ya. Korshunoff
2006-03-31 9:25 ` Marco Gerards
@ 2006-04-01 17:17 ` Vesa Jääskeläinen
2006-04-01 17:53 ` Marco Gerards
1 sibling, 1 reply; 6+ messages in thread
From: Vesa Jääskeläinen @ 2006-04-01 17:17 UTC (permalink / raw)
To: The development of GRUB 2
Sergey Ya. Korshunoff wrote:
> 2) cursor keys do not work in menu (can not move selection bar). But
> keys work in edit menu mode.
Should now be fixed in CVS now.
> 3) long menu lines (linux .......................... with parameters)
> are truncated (but it is possible to add more chars in edit mode)
There seems to be limit of 100 characters per script line. Marco,
perhaps this should be increased ?
> 4) default 1
> This command do not select right menu item as in 1.92 (always 0)
It seems to be broken. But I leave this to Marco when he have time to
work on improving the menu code. (Btw. context setting is broken...
there is only one pop in code)
Thanks,
Vesa Jääskeläinen
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: grub 1.93
2006-04-01 17:17 ` Vesa Jääskeläinen
@ 2006-04-01 17:53 ` Marco Gerards
2006-04-01 18:03 ` Vesa Jääskeläinen
0 siblings, 1 reply; 6+ messages in thread
From: Marco Gerards @ 2006-04-01 17:53 UTC (permalink / raw)
To: The development of GRUB 2
Vesa Jääskeläinen <chaac@nic.fi> writes:
> Sergey Ya. Korshunoff wrote:
>
>> 2) cursor keys do not work in menu (can not move selection bar). But
>> keys work in edit menu mode.
>
> Should now be fixed in CVS now.
>
>> 3) long menu lines (linux .......................... with parameters)
>> are truncated (but it is possible to add more chars in edit mode)
>
> There seems to be limit of 100 characters per script line. Marco,
> perhaps this should be increased ?
Of course. I hate limitations. :-)
>> 4) default 1
>> This command do not select right menu item as in 1.92 (always 0)
>
> It seems to be broken. But I leave this to Marco when he have time to
> work on improving the menu code. (Btw. context setting is broken...
> there is only one pop in code)
Context setting?
--
Marco
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: grub 1.93
2006-04-01 17:53 ` Marco Gerards
@ 2006-04-01 18:03 ` Vesa Jääskeläinen
2006-04-02 3:31 ` Marco Gerards
0 siblings, 1 reply; 6+ messages in thread
From: Vesa Jääskeläinen @ 2006-04-01 18:03 UTC (permalink / raw)
To: The development of GRUB 2
Marco Gerards wrote:
> Vesa Jääskeläinen <chaac@nic.fi> writes:
>> Sergey Ya. Korshunoff wrote:
>>> 4) default 1
>>> This command do not select right menu item as in 1.92 (always 0)
>> It seems to be broken. But I leave this to Marco when he have time to
>> work on improving the menu code. (Btw. context setting is broken...
>> there is only one pop in code)
>
> Context setting?
default and timeout use grub_context_get_current_menu () to get active
menu. But nothing sets this context.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: grub 1.93
2006-04-01 18:03 ` Vesa Jääskeläinen
@ 2006-04-02 3:31 ` Marco Gerards
0 siblings, 0 replies; 6+ messages in thread
From: Marco Gerards @ 2006-04-02 3:31 UTC (permalink / raw)
To: The development of GRUB 2
Vesa Jääskeläinen <chaac@nic.fi> writes:
> Marco Gerards wrote:
>> Vesa Jääskeläinen <chaac@nic.fi> writes:
>>> Sergey Ya. Korshunoff wrote:
>>>> 4) default 1
>>>> This command do not select right menu item as in 1.92 (always 0)
>>> It seems to be broken. But I leave this to Marco when he have time to
>>> work on improving the menu code. (Btw. context setting is broken...
>>> there is only one pop in code)
>>
>> Context setting?
>
> default and timeout use grub_context_get_current_menu () to get active
> menu. But nothing sets this context.
And you will fix this, right? ;-)
--
Marco
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2006-04-02 3:30 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-31 4:52 grub 1.93 Sergey Ya. Korshunoff
2006-03-31 9:25 ` Marco Gerards
2006-04-01 17:17 ` Vesa Jääskeläinen
2006-04-01 17:53 ` Marco Gerards
2006-04-01 18:03 ` Vesa Jääskeläinen
2006-04-02 3:31 ` Marco Gerards
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.