[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2014-01-07 Thread Ara Pulido
** Changed in: oem-priority Status: Confirmed = Fix Released ** Changed in: oem-priority/precise Status: Confirmed = Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1178618

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-12-23 Thread Launchpad Bug Tracker
This bug was fixed in the package grub2 - 1.99-21ubuntu3.14 --- grub2 (1.99-21ubuntu3.14) precise; urgency=low * Handle FAT filesystems on non-512B disks (LP: #1065281). * Probe FusionIO devices (LP: #1237519). * On Linux, read partition start offsets from sysfs if possible

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-12-17 Thread Launchpad Bug Tracker
** Branch linked: lp:debian/experimental/grub2 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1178618 Title: --hotkey option does not work when the menu is hidden To manage notifications about this

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-12-11 Thread Bin Li
I verified this issue. First I change the /etc/grub.d/20_memtest86+ like below. -menuentry Memory test (memtest86+) { +menuentry Memory test (memtest86+) --hotkey f9{ After update-grub and reboot, F9 could work. Next, I change the /etc/default/grub, I added 'GRUB_TIMEOUT_STYLE=hidden' After

Re: [Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-12-11 Thread Colin Watson
Sounds good, thanks. Note that if you're using GRUB_TIMEOUT_STYLE, then GRUB_HIDDEN_TIMEOUT is supposed to be ignored; once GRUB_TIMEOUT_STYLE is set to indicate that we're in the new world, we use GRUB_TIMEOUT consistently. -- You received this bug notification because you are a member of

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-12-10 Thread Hsin-Yi, Chen (hychen)
confirmed that this bug is fixed by grub 1.99-21ubuntu3.14. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1178618 Title: --hotkey option does not work when the menu is hidden To manage

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-12-06 Thread Adam Conrad
Hello Hsin-Yi, or anyone else affected, Accepted grub2 into precise-proposed. The package will build now and be available at http://launchpad.net/ubuntu/+source/grub2/1.99-21ubuntu3.14 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-12-05 Thread Launchpad Bug Tracker
This bug was fixed in the package grub2 - 2.00-21 --- grub2 (2.00-21) unstable; urgency=low [ Robert Millan ] * Backport from upstream: - Accept ZFS version 5000 (feature based). [ Colin Watson ] * Silence error message on initial installation when /etc/default/grub

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-12-04 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-core-dev/ubuntu/precise/grub2/precise -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1178618 Title: --hotkey option does not work when the menu is hidden To manage

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-12-03 Thread Launchpad Bug Tracker
** Branch linked: lp:debian/grub2 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1178618 Title: --hotkey option does not work when the menu is hidden To manage notifications about this bug go to:

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-12-03 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/grub2 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1178618 Title: --hotkey option does not work when the menu is hidden To manage notifications about

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-11-27 Thread Yang Bai
I had sent the patch in comment 15 to grub mailing list http://lists.gnu.org/archive/html/grub-devel/2013-09/msg00053.html. There were some comments on it and this patch is rejected. After discussing, the maintaner wants to use the patch in comment 14. Franz Hsieh sent one update patch to the

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-11-27 Thread Colin Watson
** Also affects: grub2 (Ubuntu Precise) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1178618 Title: --hotkey option does not work when the menu is

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-11-27 Thread Colin Watson
OK. I talked with Vladimir about this on #grub today; he shares my dislike for the hardcoded hotkey names, and between us we came up with a better plan: * The simplest way to work out what hotkeys to honour is to introspect the menu structure itself. However, this can only be done after all

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-11-27 Thread Colin Watson
** Changed in: grub2 (Ubuntu) Status: Triaged = In Progress ** Changed in: grub2 (Ubuntu Precise) Milestone: None = ubuntu-12.04.4 ** Changed in: grub2 (Ubuntu Precise) Status: New = Triaged ** Changed in: grub2 (Ubuntu Precise) Assignee: (unassigned) = Colin Watson

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-09-16 Thread Yang Bai
What about use sleep --interruptible to get the hotkey we want to use? -{interruptible, 'i', 0, N_(Allow to interrupt with ESC.), 0, 0}, +{interruptible, 'i', 0, N_(Allow to interrupt with one key.), 0, ARG_TYPE_STRING}, I wrote a simple patch for this way. And we can use if sleep

Re: [Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-09-16 Thread Colin Watson
This patch has at least the following flaws: * It duplicates content (key names) from the normal module. * It has an absurdly long if chain which should be table-driven instead. * It does not meet the requirement of passing at least some hotkeys on to the menu; instead, you will in

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-09-11 Thread Colin Watson
I've forwarded this upstream as https://lists.gnu.org/archive/html/grub- devel/2013-09/msg00046.html, and added my own review there. Sorry for the long delay! -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-08-09 Thread Ara Pulido
** Changed in: grub2 (Ubuntu) Assignee: (unassigned) = Colin Watson (cjwatson) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1178618 Title: --hotkey option does not work when the menu is

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-08-07 Thread James M. Leddy
Hi Colin, Does Frank's patch work for you? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1178618 Title: --hotkey option does not work when the menu is hidden To manage notifications about this

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-08-07 Thread James M. Leddy
** Changed in: oem-priority Assignee: James M. Leddy (jm-leddy) = Ara Pulido (apulido) ** Changed in: oem-priority/precise Assignee: James M. Leddy (jm-leddy) = Ara Pulido (apulido) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-06-12 Thread Franz Hsieh
@colin I rewrite a new patch that: 1. add --function-key option to read function key and set to hotkey environment variable. 2. grub reads hotkey environment variable and boot to the entry at the start. 3. add GRUB_HIDDEN_TIMEOUT_KEY variable in /etc/default/grub Note: Currently we

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-06-06 Thread Colin Watson
(General note: please try to look at how the existing code is formatted and follow its style; this file uses a two-space indent with GNU brace style and tab-for-every-eight-spaces, and there are a few other details to match as well. When you use a different style for parts of your changes, it

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-05-27 Thread Franz Hsieh
@Colin, @Hsin-Yi I have done a new patch that adds 100ms delay and checks hotkey in: file: ${src}/grub-core/normal/menu.c ... /* If timeout is 0, drawing is pointless (and ugly). */ if (grub_menu_get_timeout () == 0) { *auto_boot = 1; return default_entry; } ... With this

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-05-16 Thread Hsin-Yi, Chen (hychen)
@Colin I will look at the code of hotkey to see how to improve it, it seems I should add some key detection here to let grub boot to the menu entry when corresponding key is pressing. file: ${src}/grub-core/normal/menu.c ``` /* If timeout is 0, drawing is pointless (and ugly). */ if

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-05-15 Thread Hsin-Yi, Chen (hychen)
** Summary changed: - add a command to detect function key status. + --hotkey option does not work when the menu is hidden -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1178618 Title: --hotkey